You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/10/25 20:39:52 UTC

[GitHub] [arrow] kou commented on a diff in pull request #14500: ARROW-18158: [CI] Use default Python version when installing conda cpp environment to fix conda builds

kou commented on code in PR #14500:
URL: https://github.com/apache/arrow/pull/14500#discussion_r1004943955


##########
ci/docker/conda-cpp.dockerfile:
##########
@@ -22,13 +22,18 @@ FROM ${repo}:${arch}-conda
 COPY ci/scripts/install_minio.sh /arrow/ci/scripts
 RUN /arrow/ci/scripts/install_minio.sh latest /opt/conda
 
+# Unless overriden use Python 3.10
+# Google GCS fails building with Python 3.11 at the moment.
+ARG python=3.10
+
 # install the required conda packages into the test environment
 COPY ci/conda_env_cpp.txt \
      ci/conda_env_gandiva.txt \
      /arrow/ci/
 RUN mamba install -q -y \
         --file arrow/ci/conda_env_cpp.txt \
         --file arrow/ci/conda_env_gandiva.txt \
+        python=${python} \
         compilers \
         doxygen \
         valgrind && \

Review Comment:
   Could you keep this list in alphabetical order?



-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org