Skip to content

Commit

Permalink
Apply suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Oct 19, 2023
1 parent cc0ad1f commit 53a1887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/docker/conda-python.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ ARG python=3.8
COPY ci/conda_env_python.txt \
/arrow/ci/
# If the Python version being tested is the same as the Python used by the system gdb,
# we need to install the conda-forge gdb instead.
# we need to install the conda-forge gdb instead (GH-38323).
RUN mamba install -q -y \
--file arrow/ci/conda_env_python.txt \
$([ "$python" == "3.10" ] && echo "gdb") \
$([ "$python" == $(gdb --batch --eval-command 'python import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') ] && echo "gdb") \
python=${python} \
nomkl && \
mamba clean --all
Expand Down

0 comments on commit 53a1887

Please sign in to comment.