-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-43519: [Python][CI] Update Python 3.13 rc to final 3.13.0 #44375
base: main
Are you sure you want to change the base?
GH-43519: [Python][CI] Update Python 3.13 rc to final 3.13.0 #44375
Conversation
@github-actions crossbow submit -g wheels |
|
@github-actions crossbow submit -g wheel |
Revision: 4fcbcb2 Submitted crossbow builds: ursacomputing/crossbow @ actions-605824d979 |
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.
I am going to close the one I was doing: #44371
Some comments related to some things I saw there.
We will have to wait for chocolatey to be released but from my understanding this is not required to be merged for the release.
@@ -84,7 +84,7 @@ RUN (if "%python%"=="3.9" setx PYTHON_VERSION "3.9.13" && setx PATH "%PATH%;C:\P | |||
(if "%python%"=="3.10" setx PYTHON_VERSION "3.10.11" && setx PATH "%PATH%;C:\Python310;C:\Python310\Scripts") & \ | |||
(if "%python%"=="3.11" setx PYTHON_VERSION "3.11.9" && setx PATH "%PATH%;C:\Python311;C:\Python311\Scripts") & \ | |||
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.5" && setx PATH "%PATH%;C:\Python312;C:\Python312\Scripts") & \ | |||
(if "%python%"=="3.13" setx PYTHON_VERSION "3.13.0-rc1" && setx PATH "%PATH%;C:\Python313;C:\Python313\Scripts") | |||
(if "%python%"=="3.13" setx PYTHON_VERSION "3.13.0" && setx PATH "%PATH%;C:\Python313;C:\Python313\Scripts") |
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.0
is still not on chocolatey, see: https://community.chocolatey.org/packages/python313
That's why it fails
@@ -84,7 +84,7 @@ RUN (if "%python%"=="3.9" setx PYTHON_VERSION "3.9.13" && setx PATH "%PATH%;C:\P | |||
(if "%python%"=="3.10" setx PYTHON_VERSION "3.10.11" && setx PATH "%PATH%;C:\Python310;C:\Python310\Scripts") & \ | |||
(if "%python%"=="3.11" setx PYTHON_VERSION "3.11.9" && setx PATH "%PATH%;C:\Python311;C:\Python311\Scripts") & \ | |||
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.5" && setx PATH "%PATH%;C:\Python312;C:\Python312\Scripts") & \ |
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.
Not strictly required but we can update to the latest on chocolatey.
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.5" && setx PATH "%PATH%;C:\Python312;C:\Python312\Scripts") & \ | |
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.6" && setx PATH "%PATH%;C:\Python312;C:\Python312\Scripts") & \ |
@@ -54,7 +54,7 @@ RUN (if "%python%"=="3.9" setx PYTHON_VERSION "3.9.13") & \ | |||
(if "%python%"=="3.10" setx PYTHON_VERSION "3.10.11") & \ | |||
(if "%python%"=="3.11" setx PYTHON_VERSION "3.11.9") & \ | |||
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.5") & \ |
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.
Not strictly required but we can update to the latest on chocolatey.
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.5") & \ | |
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.6") & \ |
@@ -47,17 +47,11 @@ full_version=${versions[$2]} | |||
if [ $platform = "macOS" ]; then | |||
echo "Downloading Python installer..." | |||
|
|||
if [ "$version" = "3.13" ] || [ "$version" = "3.13t" ]; | |||
if [ "$(uname -m)" = "x86_64" ] && [ "$version" = "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.
LGTM, can you also update https://github.com/apache/arrow/pull/44375/files#diff-404e24b955d9320a7b3db90149855e38c86133f626f8b555002212293e79ad80L31 to:
[3.12]=3.12.7
This is the latest with packages (.pkg
) on https://www.python.org/ftp/python/
I'll note that at some point we can probably remove the chocolatey complications (including the uninstall step) on Windows and instead download a distribution from https://github.com/indygreg/python-build-standalone . |
@jorisvandenbossche Are you willing to update this PR? |
Rationale for this change
The final Python 3.13.0 is out now, so we can update those versions