feat!: drop Python 3.9 support and add Python 3.14#3287
Merged
Conversation
0df600a to
b0c4d9b
Compare
b0c4d9b to
3c30e0d
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR updates the project's Python version support by dropping Python 3.9 and adding Python 3.14, while also raising the minimum required Python version from 3.9.0 to 3.10.0. The changes align the project with newer Python releases.
- Removed Python 3.9 from supported versions and added Python 3.14
- Updated minimum required Python version to 3.10.0
- Simplified coverage dependency specification by removing Python 3.9-specific version pinning
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tox.ini | Updated test environments to include py314 and removed py39 and py38 from unit test labels |
| requirements-test.txt | Removed conditional coverage versions for Python 3.9 and standardized on coverage 7.11.0 |
| pyproject.toml | Updated requires-python to 3.10.0, removed Python 3.9 classifier, and added Python 3.14 classifier |
| README.rst | Updated documentation to reflect minimum Python version of 3.10+ for version 7.0.0 |
| .readthedocs.yml | Updated ReadTheDocs build to use Python 3.14 instead of 3.11 |
| .github/workflows/test.yml | Removed Python 3.9 from test matrix and updated to use Python 3.14 for all test jobs |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Python 3.9 is End-of-Life (EOL) as of 2025-10 as stated in https://devguide.python.org/versions/ and https://peps.python.org/pep-0596/#lifespan By dropping support for Python 3.9 and requiring Python 3.10 or higher it allows python-gitlab to take advantage of new features in Python 3.10, which are documented at: https://docs.python.org/3/whatsnew/3.10.html Also mark Python 3.14 as officially supported as it has been released. Closes: #3285 BREAKING CHANGE: As of python-gitlab 7.0.0, Python 3.9 is no longer supported. Python 3.10 or higher is required.
3c30e0d to
226221b
Compare
There was a problem hiding this comment.
Pull Request Overview
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
💡 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.
Python 3.9 is End-of-Life (EOL) as of 2025-10 as stated in https://devguide.python.org/versions/ and
https://peps.python.org/pep-0596/#lifespan
By dropping support for Python 3.9 and requiring Python 3.10 or higher it allows python-gitlab to take advantage of new features in Python 3.10, which are documented at:
https://docs.python.org/3/whatsnew/3.10.html
Also mark Python 3.14 as officially supported as it has been released.
Closes: #3285
BREAKING CHANGE: As of python-gitlab 7.0.0, Python 3.9 is no longer supported. Python 3.10 or higher is required.