Drop Python 3.8/3.9, add Python 3.14 support - #69
Merged
Merged
Conversation
Copilot
AI
changed the title
Drop Python 3.8/3.9 support, add Python 3.14 support
Drop Python 3.8/3.9, add Python 3.14 support
Jul 1, 2026
Copilot created this pull request from a session on behalf of
EndlessTrax
July 1, 2026 23:44
View session
EndlessTrax
marked this pull request as ready for review
July 1, 2026 23:49
EndlessTrax
approved these changes
Jul 1, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request updates the project’s declared and tested Python support window by raising the minimum supported Python version to 3.10 and extending CI coverage through Python 3.14.
Changes:
- Update
pyproject.tomlmetadata to drop Python 3.8/3.9 classifiers, add Python 3.14, and setrequires-python = ">=3.10". - Update the GitHub Actions test matrix to run against Python 3.10–3.14.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| pyproject.toml | Aligns package metadata (classifiers + requires-python) with the new minimum/maximum supported Python versions. |
| .github/workflows/run_tests.yml | Updates CI to stop testing 3.8/3.9 and add coverage for 3.14. |
💡 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.
Bumps minimum supported Python to 3.10 and extends support through 3.14.
Changes
pyproject.toml: removes3.8/3.9classifiers, adds3.14, setsrequires-python = ">=3.10".github/workflows/run_tests.yml: updates CI test matrix from['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']to['3.10', '3.11', '3.12', '3.13', '3.14']