-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[Packaging] Support Python 3.13 #31895
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 |
|---|---|---|
|
|
@@ -25,7 +25,8 @@ exit_code=0 | |
| # Disable alias temporarily: https://github.com/Azure/azure-cli/pull/27717 | ||
| # hybridaks is going to be deprecated: https://github.com/Azure/azure-cli/pull/29838 | ||
| # db-up is going to be deprecated: https://github.com/Azure/azure-cli/pull/29887 | ||
| ignore_list='azure-cli-ml fzf arcappliance arcdata connectedk8s k8s-extension alias hybridaks db-up' | ||
| # serviceconnector-passwordless's dependency is not compatible with 3.13 https://github.com/Azure/azure-cli/pull/31895 | ||
| ignore_list='azure-cli-ml fzf arcappliance arcdata connectedk8s k8s-extension alias hybridaks db-up serviceconnector-passwordless' | ||
|
|
||
| # Does not exit if az extension add fails until all extensions have been tested | ||
| set +e | ||
|
|
@@ -61,7 +62,7 @@ az self-test --debug | |
| if [ $? != 0 ] | ||
| then | ||
| exit_code=1 | ||
| echo "Failed to verify:" $ext | ||
| echo "Failed to verify" | ||
|
||
| fi | ||
|
|
||
| exit $exit_code | ||
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.
We should not drop Python 3.9's test as we need to make sure our code works on Python 3.9
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.
We only test the Python which is used in official package.
Currently, RPM used 3.12, DEB, macOS and Windows use 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.
We should have removed 3.9's test in #31264.