File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ FROM ${base}
2828
2929# Define the full version number otherwise choco falls back to patch number 0 (3.10 => 3.10.0)
3030ARG python=3.10
31+ RUN (if "%python%" =="3.10" setx PYTHON_VERSION "3.10.11" && setx PYTHON_CMD "py -3.10" ) & \
32+ (if "%python%" =="3.11" setx PYTHON_VERSION "3.11.9" && setx PYTHON_CMD "py -3.11" ) & \
33+ (if "%python%" =="3.12" setx PYTHON_VERSION "3.12.10" && setx PYTHON_CMD "py -3.12" ) & \
34+ (if "%python%" =="3.13" setx PYTHON_VERSION "3.13.7" && setx PYTHON_CMD "py -3.13" ) & \
35+ (if "%python%" =="3.14" setx PYTHON_VERSION "3.14.0" && setx PYTHON_CMD "py -3.14" )
3136
3237# hadolint ignore=DL3059
3338RUN choco install -r -y --pre --no-progress --force python --version=%PYTHON_VERSION%
@@ -37,4 +42,4 @@ RUN %PYTHON_CMD% -m pip install -U pip setuptools
3742COPY python/requirements-wheel-test.txt C:/arrow/python/
3843RUN %PYTHON_CMD% -m pip install -r C:/arrow/python/requirements-wheel-test.txt
3944
40- ENV PYTHON=$python
45+ ENV PYTHON=${ python}
You can’t perform that action at this time.
0 commit comments