Skip to content

Commit c698871

Browse files
committed
Update supported and tested Python versions
1 parent ab20aec commit c698871

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: ['3.13']
11+
python-version: ['3.14']
1212
include:
1313
- os: ubuntu-latest
14-
python-version: '3.9'
14+
python-version: '3.10'
1515
- os: ubuntu-latest
16-
python-version: 'pypy-3.10'
16+
python-version: 'pypy-3.11'
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v5

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pydyf is a low-level PDF generator written in Python and based on PDF
22
specification 1.7.
33

44
* Free software: BSD license
5-
* For Python 3.9+, tested on CPython and PyPy
5+
* For Python 3.10+, tested on CPython and PyPy
66
* Documentation: https://doc.courtbouillon.org/pydyf
77
* Changelog: https://github.com/CourtBouillon/pydyf/releases
88
* Code, issues, tests: https://github.com/CourtBouillon/pydyf

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = 'A low-level PDF generator.'
88
keywords = ['pdf', 'generator']
99
authors = [{name = 'CourtBouillon', email = 'contact@courtbouillon.org'}]
1010
maintainers = [{name = 'CourtBouillon', email = 'contact@courtbouillon.org'}]
11-
requires-python = '>=3.9'
11+
requires-python = '>=3.10'
1212
readme = {file = 'README.rst', content-type = 'text/x-rst'}
1313
license = {file = 'LICENSE'}
1414
classifiers = [
@@ -19,11 +19,11 @@ classifiers = [
1919
'Programming Language :: Python',
2020
'Programming Language :: Python :: 3',
2121
'Programming Language :: Python :: 3 :: Only',
22-
'Programming Language :: Python :: 3.9',
2322
'Programming Language :: Python :: 3.10',
2423
'Programming Language :: Python :: 3.11',
2524
'Programming Language :: Python :: 3.12',
2625
'Programming Language :: Python :: 3.13',
26+
'Programming Language :: Python :: 3.14',
2727
'Programming Language :: Python :: Implementation :: CPython',
2828
'Programming Language :: Python :: Implementation :: PyPy',
2929
]

0 commit comments

Comments
 (0)