AlenkaF commented on code in PR #47616:
URL: https://github.com/apache/arrow/pull/47616#discussion_r2425710570
##########
ci/docker/python-free-threaded-wheel-musllinux-test-imports.dockerfile:
##########
@@ -34,19 +37,19 @@ RUN apk add --no-cache \
tzdata \
zlib-dev
-# Install Python3.13.2 without GIL
-RUN wget https://github.com/python/cpython/archive/refs/tags/v3.13.2.tar.gz &&
\
- tar -xzf v3.13.2.tar.gz && \
- rm v3.13.2.tar.gz && \
- cd cpython-3.13.2/ && \
+# Install Python without GIL
Review Comment:
Follow-up issue: https://github.com/apache/arrow/issues/47797
##########
ci/docker/python-free-threaded-wheel-windows-vs2022.dockerfile:
##########
@@ -26,9 +26,13 @@ FROM ${base}
ARG python=3.13
+RUN (if "%python%"=="3.13" setx PYTHON_VERSION "3.13.1") & \
+ (if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0")
+
SHELL ["powershell", "-NoProfile", "-Command", "$ErrorActionPreference =
'Stop'; $ProgressPreference = 'SilentlyContinue';"]
-RUN $filename = 'python-3.13.1-amd64.exe'; \
- $url = 'https://www.python.org/ftp/python/3.13.1/' + $filename; \
+RUN $version = $env:PYTHON_VERSION; \
+ $filename = 'python-' + $version + '-amd64.exe'; \
+ $url = 'https://www.python.org/ftp/python/' + $version + '/' + $filename; \
Review Comment:
Follow-up issue: https://github.com/apache/arrow/issues/47797
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]