Skip to content

Commit 22d4e0f

Browse files
authored
Merge pull request #71 from devitocodes/py314
Support py3.14
2 parents d0b98c5 + 74e506b commit 22d4e0f

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/pytest-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-22.04, ubuntu-latest]
18-
python-version: ['3.10', '3.11', '3.12', '3.13']
18+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1919

2020
steps:
2121
- uses: actions/checkout@v4

.github/workflows/pytest-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: macos-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1515

1616
steps:
1717
- uses: actions/checkout@v4

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def extensions():
5050
'packages': find_packages(exclude=['examples', 'tests']),
5151
'setup_requires': s_required,
5252
'install_requires': i_required,
53-
'python_requires': '>=3.10,<3.14',
53+
'python_requires': '>=3.10,<3.15',
5454
'extras_require': {'compression': ['blosc2', 'pyzfp']},
5555
'ext_modules': lazy_cythonize(extensions),
5656
'version': versioneer.get_version(),
@@ -69,7 +69,8 @@ def extensions():
6969
'Programming Language :: Python :: 3.10',
7070
'Programming Language :: Python :: 3.11',
7171
'Programming Language :: Python :: 3.12',
72-
'Programming Language :: Python :: 3.13'
72+
'Programming Language :: Python :: 3.13',
73+
'Programming Language :: Python :: 3.14'
7374
]
7475
}
7576

0 commit comments

Comments
 (0)