Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 6a41668

Browse files
authored
Aarch64 python 3.13 changes (#2022)
1 parent 0015a52 commit 6a41668

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

aarch64_linux/aarch64_ci_setup.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ conda config --set ssl_verify False
2525
conda create -y -c conda-forge -n "${CONDA_ENV_NAME}" python=${DESIRED_PYTHON}
2626
conda activate "${CONDA_ENV_NAME}"
2727

28-
if [[ "$DESIRED_PYTHON" == "3.8" ]]; then
29-
pip install -q numpy==1.24.4
28+
if [[ "$DESIRED_PYTHON" == "3.13" ]]; then
29+
pip install -q --pre numpy==2.1.2
30+
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
3031
else
3132
pip install -q --pre numpy==2.0.2
33+
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
3234
fi
33-
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
3435

3536
python --version
3637
conda --version

0 commit comments

Comments
 (0)