ci: support Python 3.10+ versions in CI and project configuration#34
Merged
ci: support Python 3.10+ versions in CI and project configuration#34
Conversation
Co-authored-by: Ki-Seki <60967965+Ki-Seki@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] ci: support more Python versions
ci: support Python 3.10+ versions in CI and project configuration
Sep 21, 2025
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR extends Python version support from 3.12+ to 3.10+ to improve compatibility while maintaining existing functionality. The changes update project configuration files to support the broader Python version range and expand CI testing coverage.
Key changes:
- Updated minimum Python version requirement from 3.12 to 3.10
- Extended CI matrix to test Python 3.10, 3.11, 3.12, and 3.13
- Updated tooling configuration to target Python 3.10
Reviewed Changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Updated requires-python and ruff target-version to support Python 3.10+ |
| .python-version | Changed from 3.12 to 3.13 for development environment |
| .github/workflows/ci.yml | Added Python 3.10 and 3.11 to CI test matrix |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Ki-Seki
approved these changes
Sep 22, 2025
Member
|
@copilot change the pr description. I've change the development python version to 3.13 |
Contributor
Author
Ki-Seki
approved these changes
Sep 22, 2025
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.
This PR extends Python version support from the current 3.12+ to 3.10+, enabling broader compatibility for users while maintaining all existing functionality.
Changes Made
requires-pythonfrom>=3.12to>=3.10and rufftarget-versionfrompy312topy3103.12to3.13for development, while maintaining Python 3.10+ support in the packageTechnical Rationale
The codebase already uses Python 3.10+ syntax (union types with
|operator), making 3.10 a natural minimum version. This change provides better accessibility for users on older Python versions while ensuring the code remains compatible with newer versions. The development environment uses Python 3.13 to leverage the latest features and improvements.Verification
Fixes #33.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.