Skip to content

Commit 726e7c9

Browse files
committed
Still not the right syntax
1 parent da3a668 commit 726e7c9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.ci/docker/common/install_conda.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,13 @@ install_miniconda() {
3232
install_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

0 commit comments

Comments
 (0)