We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9e532 commit b0d30cbCopy full SHA for b0d30cb
ci/docker/python-wheel-windows-vs2022.dockerfile
@@ -26,12 +26,13 @@ ARG python=3.10
26
27
# Use python_abi_tag env var to select regular or free-threaded Python
28
ARG python_variant=default
29
+ENV PYTHON_VERSION=${python}
30
ENV PYTHON_VARIANT=${python_variant}
31
RUN pymanager install --version %PYTHON_VERSION% --variant %PYTHON_VARIANT%
32
-RUN %PYTHON_CMD% -m pip install -U pip setuptools
33
+RUN py -%PYTHON_VERSION% -m pip install -U pip setuptools
34
35
COPY python/requirements-wheel-build.txt C:/arrow/python/
-RUN %PYTHON_CMD% -m pip install -r C:/arrow/python/requirements-wheel-build.txt
36
+RUN py -%PYTHON_VERSION% -m pip install -r C:/arrow/python/requirements-wheel-build.txt
37
38
ENV PYTHON=${python}
0 commit comments