Skip to content

Commit

Permalink
Aarch64 python 3.13 changes (#2022)
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman authored Nov 4, 2024
1 parent 0015a52 commit 6a41668
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions aarch64_linux/aarch64_ci_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6a41668

Please sign in to comment.