🔥 build: drop Python 3.9, add Python 3.14 support#53
Merged
Conversation
Python 3.9 is end-of-life. Bump the minimum supported version to 3.10 and extend support up to Python 3.14 across packaging metadata, type/lint tooling, and CI. - requires-python: >=3.9 -> >=3.10 - drop the 3.9 trove classifier, add the 3.14 classifier - mypy python_version, ruff target-version, pylint py-version -> 3.10 - CI test matrix: ["3.9", "3.13"] -> ["3.10", "3.14"] Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
No longer needed now that the minimum supported Python is 3.10. Forward references in `_core.py` (`Comparator`, `OptionalDependencyEnum`) are quoted since they are now evaluated at runtime. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #53 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 3 3
Lines 81 81
=========================================
Hits 81 81 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
The `uv run` steps re-synced the project's default `dev` group (and its heavy `ipykernel` -> `pyzmq` chain) on top of the selective `Install` step, which broke on Python 3.14 / Windows + macOS where pyzmq 26.2.0 has no wheel and fails to build from source. Use `uv run --no-sync` so the steps reuse exactly the environment the preceding `uv sync --no-default-groups --group ...` created. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.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.
Summary
Python 3.9 has reached end-of-life. This PR raises the minimum supported Python to 3.10 and extends support up to Python 3.14.
Changes
requires-python:>=3.9→>=3.10Python :: 3.9, addPython :: 3.143.10: mypypython_version, rufftarget-version(py310), pylintpy-version["3.9", "3.13"]→["3.10", "3.14"]🤖 Generated with Claude Code