Drop Python 3.9 support#62
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #62 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 6 6
Lines 336 336
Branches 16 16
=========================================
Hits 336 336 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
bdraco
commented
May 11, 2026
There was a problem hiding this comment.
Pull request overview
This PR drops Python 3.9 support across project metadata and tooling, setting Python 3.10 as the minimum supported version and aligning CI + static analysis configuration accordingly.
Changes:
- Bumped package
requires-pythonto>=3.10. - Removed Python 3.9 from the GitHub Actions CI test matrix.
- Updated developer tooling targets (pyupgrade and mypy) to Python 3.10, and added a breaking-change entry.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
pyproject.toml |
Updates packaging metadata to require Python >=3.10. |
CHANGES/62.breaking.rst |
Adds a Towncrier breaking-change note documenting the Python 3.9 drop. |
.pre-commit-config.yaml |
Updates pyupgrade and mypy hook targets from 3.9 to 3.10 (naming + report paths). |
.mypy.ini |
Sets mypy’s configured python_version to 3.10. |
.github/workflows/ci-cd.yml |
Removes Python 3.9 from the CI matrix while keeping supported versions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Drops Python 3.9; minimum supported Python is now 3.10. Updates requires-python, the CI matrix, the mypy target and pyupgrade target to match.