Support Python 3.10-3.14, drop 3.8 and 3.9 - #90
Merged
Merged
Conversation
Raise requires-python to >=3.10 and add classifiers up to 3.14. The CI matrix now runs 3.10, 3.11, 3.12, 3.13 and 3.14 on all three platforms. Refreshed uv.lock so dependencies resolve on 3.14 (pandas 3.0 and pyarrow 25 for the newer interpreters), and made a regex test string raw, since invalid escape sequences warn on 3.14 and become errors later. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012isf4cKfkYp29T3Zem6op8
timvink
force-pushed
the
python-314-support
branch
from
September 14, 2026 10:42
3bafae0 to
c943b14
Compare
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.
Adds support for Python 3.12, 3.13 and 3.14, and drops 3.8 and 3.9.
Changes
requires-pythonis now>=3.10, with classifiers for 3.10 through 3.14.uv.lockregenerated. The old lock pinned pandas 2.2 and pyarrow 19, neither of which ships cp314 wheels, so a 3.14 job would have tried to build them from source. The refreshed lock resolves pandas 3.0.5, numpy 2.5 and pyarrow 25 for the newer interpreters while keeping working versions for 3.10.tests/test_safe_eval.pybecame a raw string."'\s+'"is an invalid escape sequence: it warns on 3.14 and is slated to become aSyntaxError.No source changes were needed — the plugin code already works on all five versions.
Verification
The full suite passes locally on each version in the new matrix, including on pandas 3.0:
Note that this is a breaking change for anyone still on 3.8 or 3.9, so it warrants a minor version bump.
🤖 Generated with Claude Code
https://claude.ai/code/session_012isf4cKfkYp29T3Zem6op8