From 454fc270626057e632f79002ce3dc11ad5a7fa30 Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Thu, 30 Apr 2026 19:12:19 +0800 Subject: [PATCH] [wip] Bump Python version to 3.12. --- containers/conda_env/aarch64_test.yml | 2 +- containers/conda_env/linux_cpu_test.yml | 2 +- containers/dockerfile/Dockerfile.gpu | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/containers/conda_env/aarch64_test.yml b/containers/conda_env/aarch64_test.yml index 8944de0..4e881ce 100644 --- a/containers/conda_env/aarch64_test.yml +++ b/containers/conda_env/aarch64_test.yml @@ -2,7 +2,7 @@ name: aarch64_test channels: - conda-forge dependencies: -- python=3.10 +- python=3.12 - pip - wheel - pytest diff --git a/containers/conda_env/linux_cpu_test.yml b/containers/conda_env/linux_cpu_test.yml index c5e8023..26db088 100644 --- a/containers/conda_env/linux_cpu_test.yml +++ b/containers/conda_env/linux_cpu_test.yml @@ -2,7 +2,7 @@ name: linux_cpu_test channels: - conda-forge dependencies: -- python=3.10 +- python=3.12 - cmake - c-compiler - cxx-compiler diff --git a/containers/dockerfile/Dockerfile.gpu b/containers/dockerfile/Dockerfile.gpu index 0fb06e6..2f770fa 100644 --- a/containers/dockerfile/Dockerfile.gpu +++ b/containers/dockerfile/Dockerfile.gpu @@ -6,7 +6,7 @@ ARG RAPIDS_VERSION ARG NCCL_VERSION ARG ARCH=x86_64 ARG MINIFORGE_VERSION=24.9.2-0 -ARG PYTHON_VERSION=3.10 +ARG PYTHON_VERSION=3.12 SHELL ["/bin/bash", "-c"]