We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa71bd commit c6cbe77Copy full SHA for c6cbe77
aarch64_linux/aarch64_ci_setup.sh
@@ -23,6 +23,13 @@ source /opt/conda/etc/profile.d/conda.sh
23
conda config --set ssl_verify False
24
conda create -y -c conda-forge -n aarch64_env python=${DESIRED_PYTHON}
25
conda activate aarch64_env
26
-conda install -y -c conda-forge numpy==1.26.0 pyyaml==6.0.1 patchelf==0.17.2 pygit2==1.13.2 openblas==0.3.24 ninja==1.11.1 scons==4.5.2
+
27
+if [[ "$DESIRED_PYTHON" == "3.8" ]]; then
28
+ NUMPY_VERSION="1.24.4"
29
+else
30
+ NUMPY_VERSION="1.26.0"
31
+fi
32
+conda install -y -c conda-forge numpy==${NUMPY_VERSION} pyyaml==6.0.1 patchelf==0.17.2 pygit2==1.13.2 openblas==0.3.24 ninja==1.11.1 scons==4.5.2
33
34
python --version
35
conda --version
0 commit comments