Add Python 3.14 support and clean up tox.ini version list#91
Merged
Conversation
Declare official support for Python 3.14: add it to the trove
classifiers in pyproject.toml and test it in CI (the latest-version
matrix entries for ubuntu/macOS/Windows now run on 3.14).
Also clean up the tox envlist, which still listed py37/38/39 even
though requires-python has been ">=3.10" for some time. The envlist
now matches the supported range: py{310,311,312,313,314}.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Jim Garrison <garrison@ibm.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Declare official support for Python 3.14 and reconcile the tox version list with the actual supported range.
Changes
pyproject.toml: add theProgramming Language :: Python :: 3.14trove classifier.tox.ini: change the envlist frompy{37,38,39,310,311,312,313}topy{310,311,312,313,314}. The old list still referenced 3.7–3.9 even thoughrequires-pythonhas been>=3.10for a while; this matches the supported range and adds 3.14..github/workflows/test_latest_versions.yml: bump the "latest" matrix entries (ubuntu/macOS/Windows) from 3.13 to 3.14. The ubuntu 3.10 entry is retained as the minimum-version check.Testing
tox -e py— 41 passedtox -e lint— clean (ruff, mypy, pylint 10.00/10, typos)reno lint— passes🤖 Generated with Claude Code