Skip to content

Commit 6a1889b

Browse files
derek73claude
andcommitted
Add Python 3.14 support
Python 3.14 was released October 2025 and is now the latest stable. Add it to the CI test matrix and the PyPI classifiers. The test suite passes on 3.14 (342 tests, OK with skipped=2, expected failures=10). python_requires remains >=3.10 — it is a floor, so newer versions are already permitted; only the matrix (testing) and classifiers (advertising) need the bump. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 288b826 commit 6a1889b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121

2222
steps:
2323
- uses: actions/checkout@v4

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def read(fname):
3030
'Programming Language :: Python :: 3.11',
3131
'Programming Language :: Python :: 3.12',
3232
'Programming Language :: Python :: 3.13',
33+
'Programming Language :: Python :: 3.14',
3334
'Development Status :: 5 - Production/Stable',
3435
'Natural Language :: English',
3536
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)