File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,13 @@ install_miniconda() {
3232install_python () {
3333 pushd /opt/conda
3434 # Install the select Python version for CI jobs
35- as_ci_user conda create -n " py_${PYTHON_VERSION} " -y --file /opt/conda/conda-env-ci.txt \
36- python=" ${PYTHON_VERSION} " \
35+ as_ci_user conda create -n " py_${PYTHON_VERSION} " -y --file /opt/conda/conda-env-ci.txt python=" ${PYTHON_VERSION} "
3736
3837 # From https://github.com/pytorch/pytorch/blob/main/.ci/docker/common/install_conda.sh
3938 if [[ $( uname -m) == " aarch64" ]]; then
40- conda_install -y " openblas==0.3.28=*openmp*"
39+ conda_install " openblas==0.3.28=*openmp*"
4140 else
42- conda_install -y mkl=2021.4 .0 mkl-include=2021.4 .0
41+ conda_install mkl=2022.1 .0 mkl-include=2022.1 .0
4342 fi
4443
4544 popd
You can’t perform that action at this time.
0 commit comments