Add Python 3.15 (rc1) to the CI matrices - #127
Merged
Merged
Conversation
Verified locally first: `uv python install "3.15"` resolves to 3.15.0rc1 (no stable 3.15 release exists yet, so uv treats the rc as the match), and the full test-suite (21 tests, 100% coverage) passes against it unmodified. Per discussion: treated the same as every other matrix entry (no continue-on-error) - a regression on the rc fails the workflow run like any other version would.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #127 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 4 4
Lines 69 69
Branches 3 3
=========================================
Hits 69 69
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.15rc1 is out. Adds
"3.15"to both thetesting.yamlandlinting.yamlmatrices, ahead of the stable release.
Verified locally first (not just assumed):
uv python install "3.15"resolves to3.15.0rc1- there's no stable 3.15 release yet,so
uvtreats the rc as the match for the bare"3.15"version string (same formatalready used for every other matrix entry).
own
.venv, to avoid clobbering it): all 21 tests pass, unmodified, no compatibilitycode needed.
Per discussion, this is a normal matrix entry (no
continue-on-error) - a regression onthe rc fails the workflow run just like any other Python version would.
Testing
pytest: 21 passed, 100% coverage (>= 90% required), against both 3.14 (project venv)and 3.15.0rc1 (isolated venv)
ruff check .: cleanty check: clean