Skip to content

Commit 45b3697

Browse files
GH-43519: [Python][CI] Add Python 3.13 conda test build (#44192)
### Rationale for this change When adding Python 3.13 support (#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 <jorisvandenbossche@gmail.com> Signed-off-by: Raúl Cumplido <raulcumplido@gmail.com>
1 parent dcc1ee5 commit 45b3697

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: ci/docker/conda-python.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ COPY ci/conda_env_python.txt \
2828
RUN mamba install -q -y \
2929
--file arrow/ci/conda_env_python.txt \
3030
$([ "$python" == $(gdb --batch --eval-command 'python import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') ] && echo "gdb") \
31-
"python=${python}.*=*_cpython" \
31+
"python=${python}.*=*_cp*" \
3232
nomkl && \
3333
mamba clean --all
3434

Diff for: dev/tasks/tasks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ tasks:
12081208
UBUNTU: 22.04
12091209
image: ubuntu-cpp-emscripten
12101210

1211-
{% for python_version in ["3.9", "3.10", "3.11", "3.12"] %}
1211+
{% for python_version in ["3.9", "3.10", "3.11", "3.12", "3.13"] %}
12121212
test-conda-python-{{ python_version }}:
12131213
ci: github
12141214
template: docker-tests/github.linux.yml

0 commit comments

Comments
 (0)