Drop Python 3.9, add Python 3.13 and 3.14 support#184
Merged
Conversation
- Bump minimum Python from ^3.9 to ^3.10 (3.9 EOL Oct 2025) - Add 3.13 and 3.14 to classifiers and CI matrix - Remove continue-on-error for 3.13 (now stable) - Bump actions/checkout to v4, setup-python to v5, cache to v4 Closes #182 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project’s declared and tested Python support to drop EOL Python 3.9 and add support for newer Python versions, aligning packaging metadata, dependency locking, and CI.
Changes:
- Bump minimum supported Python from
^3.9to^3.10and update Trove classifiers through 3.14. - Regenerate
poetry.lockunder the new Python constraint / newer Poetry version. - Update PR CI matrix to test Python 3.10–3.14 and bump core GitHub Actions versions.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| pyproject.toml | Drops 3.9, sets Python requirement to ^3.10, adds classifiers for 3.13/3.14. |
| poetry.lock | Lockfile regenerated (Poetry 2.3.2) consistent with ^3.10 minimum and updated deps/markers. |
| .github/workflows/check-pull-request.yaml | Updates CI matrix (3.10–3.14), bumps actions versions, adds runtime diagnostics, changes continue-on-error behavior. |
Comments suppressed due to low confidence (1)
.github/workflows/check-pull-request.yaml:63
- The cache key for
.venvdoes not includematrix.python-version, so a venv built under one Python version can be restored for a different version on the same OS. That can cause flaky CI and import/ABI issues for compiled deps (e.g., lxml/numpy/greenlet). Include${{ matrix.python-version }}(and optionally architecture) in the cache key (and restore-keys if desired).
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Mar 24, 2026
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
^3.9to^3.10(3.9 reached EOL October 2025)continue-on-errorfor 3.13 (stable since Oct 2024)Closes #182
Part of release plan for v0.5.4-rc2 (#181)
Test plan