-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[Packaging] Drop Python 3.9 support #32381
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -6,7 +6,7 @@ Some native Linux packages are required when installing the CLI with: | |||||
| - Interactive installation script | ||||||
| - `pip` | ||||||
|
|
||||||
| Current supported Python versions are Python 3.9 ~ 3.13. | ||||||
| Current supported Python versions are Python 3.10 ~ 3.13. | ||||||
|
|
||||||
| The commands to run to install the dependencies for some common distributions are listed below. | ||||||
|
|
||||||
|
|
@@ -16,7 +16,7 @@ sudo apt-get update && sudo apt-get install -y libssl-dev libffi-dev python-dev | |||||
| ``` | ||||||
|
|
||||||
| ### RHEL 8, CentOS Stream 8, RHEL 9, CentOS Stream 9 | ||||||
| Install the latest Python 3.9 available in the software repo. | ||||||
| Install the latest Python 3.12 available in the software repo. | ||||||
|
||||||
| Install the latest Python 3.12 available in the software repo. | |
| Install Python 3.10 or later (3.12 recommended) available in the software repo. |
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.
Is Python 3.13 not available yet?
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.
3.13 is not in the default repo yet. 3.12 is the latest version in RHEL.
Ref: https://access.redhat.com/support/policy/updates/rhel-app-streams-life-cycle
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.
[nitpick] The example shows only Python 3.13, but it would be more helpful to show multiple versions (e.g., both 3.10 and 3.13) to better illustrate testing across the supported version range, especially since the previous line mentions verifying support for all versions from 3.10 to 3.13.