From 36bf289a25d5ad885b114361dbd2a1a490258898 Mon Sep 17 00:00:00 2001 From: atalman Date: Tue, 22 Oct 2024 19:18:49 -0700 Subject: [PATCH] Aarch64 python 3.13 changes --- aarch64_linux/aarch64_ci_setup.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/aarch64_linux/aarch64_ci_setup.sh b/aarch64_linux/aarch64_ci_setup.sh index 6993a04a3..d34b94263 100755 --- a/aarch64_linux/aarch64_ci_setup.sh +++ b/aarch64_linux/aarch64_ci_setup.sh @@ -25,12 +25,13 @@ conda config --set ssl_verify False conda create -y -c conda-forge -n "${CONDA_ENV_NAME}" python=${DESIRED_PYTHON} conda activate "${CONDA_ENV_NAME}" -if [[ "$DESIRED_PYTHON" == "3.8" ]]; then - pip install -q numpy==1.24.4 +if [[ "$DESIRED_PYTHON" == "3.13" ]]; then + pip install -q --pre numpy==2.1.2 + conda install -y -c conda-forge pyyaml==6.0.2 patchelf==0.17.2 pygit2==1.15.1 ninja==1.11.1 scons==4.7.0 else pip install -q --pre numpy==2.0.2 + conda install -y -c conda-forge pyyaml==6.0.1 patchelf==0.17.2 pygit2==1.13.2 ninja==1.11.1 scons==4.5.2 fi -conda install -y -c conda-forge pyyaml==6.0.1 patchelf==0.17.2 pygit2==1.13.2 ninja==1.11.1 scons==4.5.2 python --version conda --version