Support Python 3.14#73
Conversation
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
📝 WalkthroughWalkthroughTwo configuration files are updated. In Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@pyproject.toml`:
- Line 21: The pyproject.toml file declares Python 3.14 support in the metadata,
but the CI workflow configuration in .github/workflows/ci.yaml does not include
Python 3.14 in its test matrix (lines 36-55). To align the support contract with
tested coverage, add Python 3.14 to the python version matrix in the CI workflow
alongside the existing versions (3.10, 3.11, 3.12, 3.13) so that regressions on
Python 3.14 are caught during testing.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: db618115-1f5b-49f6-932d-93e54ce6b3fd
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock
📒 Files selected for processing (2)
pyproject.tomlrenovate.json5
The existing code already supports Python 3.14 without code changes. Only the dependencies locked in the uv.lock file are too old to support Python 3.14. Updating the lockfile gives us Python 3.14 support "for free".
To remain up-to-date, instruct renovate to update the lockfile regularly.
Summary by CodeRabbit