-
Notifications
You must be signed in to change notification settings - Fork 519
Added note about rhel 9 compatibility #5680
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
base: main
Are you sure you want to change the base?
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
d29a5b2 to
47f3dd3
Compare
PoliCheck Scan ReportThe following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 and severity-2 issues. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans. ✅ No issues foundMore information about PoliCheckInformation: PoliCheck | Severity Guidance | Term |
|
Learn Build status updates of commit 47f3dd3: ✅ Validation status: passed
For more details, please refer to the build report. |
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 adds an important note about RHEL 9.0 compatibility with Azure CLI, addressing the limitation caused by Python 3.9's end-of-life status and informing users that Azure CLI 2.72 is the last compatible version for RHEL 9.0 systems.
- Adds an IMPORTANT callout explaining RHEL 9.0 compatibility limitations with Azure CLI 2.72 due to Python 3.9 EOL
- Provides installation command for users needing to install the specific compatible version
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ``` | ||
|
|
||
| > [!IMPORTANT] | ||
| > **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last |
Copilot
AI
Dec 9, 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 terminology "end-of-life" should match the existing style in this document. Line 68 uses "End Of Life (EOL)" with capitals. Consider using "End Of Life (EOL)" instead of "end-of-life" for consistency, or alternatively use the abbreviated form "EOL" since it's already defined earlier in the document.
| > **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last | |
| > **RHEL 9.0 Compatibility**: Because Python 3.9 is End Of Life (EOL), Azure CLI 2.72 is the last |
| > [!IMPORTANT] | ||
| > **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last | ||
| > version compatible with RHEL 9.0 systems using Python 3.9. Install Azure CLI 2.72 using: `sudo | ||
| > dnf install azure-cli-2.72.0`. |
Copilot
AI
Dec 9, 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 installation command references azure-cli-2.72.0 but based on line 96 which shows the version format as azure-cli-<version>-1.el7, the correct command format should likely be sudo dnf install azure-cli-2.72.0-1.el9 or similar. Please verify the exact package name format for RHEL 9 systems to ensure users can successfully install this specific version.
| > dnf install azure-cli-2.72.0`. | |
| > dnf install azure-cli-2.72.0-1.el9`. |
| > [!IMPORTANT] | ||
| > **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last | ||
| > version compatible with RHEL 9.0 systems using Python 3.9. Install Azure CLI 2.72 using: `sudo | ||
| > dnf install azure-cli-2.72.0`. |
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.
dnf install azure-cli-2.72.0 won't work.
|
|
||
| > [!IMPORTANT] | ||
| > **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last | ||
| > version compatible with RHEL 9.0 systems using Python 3.9. Install Azure CLI 2.72 using: `sudo |
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.
using Python 3.9 is not accurate. It should be the OS does not have python3.12 package. In other word, less than RHEL 9.4.
PR Summary
Fixes #5610, Fixes AB#508518, Fixes AB#506270 - Added note about rhel 9 compatibility
PR Checklist