diff --git a/.github/workflows/pytest-linux.yml b/.github/workflows/pytest-linux.yml index 1d36921..4991648 100644 --- a/.github/workflows/pytest-linux.yml +++ b/.github/workflows/pytest-linux.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-22.04, ubuntu-latest] - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/pytest-macOS.yml b/.github/workflows/pytest-macOS.yml index 64579e2..8ecdefb 100644 --- a/.github/workflows/pytest-macOS.yml +++ b/.github/workflows/pytest-macOS.yml @@ -11,7 +11,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 221a7a7..145f32a 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def extensions(): 'packages': find_packages(exclude=['examples', 'tests']), 'setup_requires': s_required, 'install_requires': i_required, - 'python_requires': '>=3.10,<3.14', + 'python_requires': '>=3.10,<3.15', 'extras_require': {'compression': ['blosc2', 'pyzfp']}, 'ext_modules': lazy_cythonize(extensions), 'version': versioneer.get_version(), @@ -69,7 +69,8 @@ def extensions(): 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', - 'Programming Language :: Python :: 3.13' + 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14' ] }