-
Notifications
You must be signed in to change notification settings - Fork 26
T430 bump tested python versions #431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the Python versions tested in the CI workflow, dropping Python 3.9 and adding Python 3.13 to the test matrix.
- Removes Python 3.9 from the CI test matrix
- Adds Python 3.13 to the CI test matrix
- Tests now run against Python 3.10, 3.11, 3.12, and 3.13
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| fail-fast: false | ||
| matrix: | ||
| python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
| python-version: ["3.10", "3.11", "3.12", "3.13"] |
Copilot
AI
Nov 18, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pyproject.toml file still specifies requires-python = ">=3.9" (line 16), but Python 3.9 is no longer being tested in CI. Please either:
- Update
requires-pythoninpyproject.tomlto">=3.10"to match the tested versions, or - Keep Python 3.9 in the test matrix if the package should continue supporting it.
This ensures consistency between the package's declared Python version support and what is actually tested.
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
Please check the following before creating the pull request (PR):
List any specific code review questions
List any special testing requirements
Additional context (e.g. papers, documentation, blog posts, ...)
Provide issue / feature request fixed by this PR
Fixes #