From 71bd117b5f10d9dc3e74efddf6744f46cf4df232 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Fri, 11 Oct 2024 11:13:30 +0200 Subject: [PATCH] GH-43519: [Python][CI] Add Python 3.13 conda test build (#44192) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Rationale for this change When adding Python 3.13 support (https://github.com/apache/arrow/pull/43539), conda was not yet ready to support Python 3.13. But over the last weeks most conda packages having being updated, so trying again. * GitHub Issue: #43519 Authored-by: Joris Van den Bossche Signed-off-by: Raúl Cumplido --- ci/docker/conda-python.dockerfile | 2 +- dev/tasks/tasks.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/docker/conda-python.dockerfile b/ci/docker/conda-python.dockerfile index 3897a7217d975..c08b69e6ef813 100644 --- a/ci/docker/conda-python.dockerfile +++ b/ci/docker/conda-python.dockerfile @@ -28,7 +28,7 @@ COPY ci/conda_env_python.txt \ RUN mamba install -q -y \ --file arrow/ci/conda_env_python.txt \ $([ "$python" == $(gdb --batch --eval-command 'python import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') ] && echo "gdb") \ - "python=${python}.*=*_cpython" \ + "python=${python}.*=*_cp*" \ nomkl && \ mamba clean --all diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml index d7ea2fd85014e..9137181466383 100644 --- a/dev/tasks/tasks.yml +++ b/dev/tasks/tasks.yml @@ -1208,7 +1208,7 @@ tasks: UBUNTU: 22.04 image: ubuntu-cpp-emscripten -{% for python_version in ["3.9", "3.10", "3.11", "3.12"] %} +{% for python_version in ["3.9", "3.10", "3.11", "3.12", "3.13"] %} test-conda-python-{{ python_version }}: ci: github template: docker-tests/github.linux.yml