Skip to content

Commit 9cf6995

Browse files
author
Tom Augspurger
committed
CI: Fix miniconda upgrade issues
1 parent 8d3fec9 commit 9cf6995

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

ci/setup_env.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@ else
4141
exit 1
4242
fi
4343

44-
wget -q "https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS.sh" -O miniconda.sh
45-
chmod +x miniconda.sh
46-
./miniconda.sh -b
44+
# wget -q "https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS.sh" -O miniconda.sh
45+
wget -q "https://repo.anconda.com/pkgs/misc/conda-execs/conda-latest-$CONDA_OS.exe" -O conda.exe
46+
export CONDA_ALWAYS_YES=1
47+
chmod +x conda.exe
48+
49+
./conda.exe create -p $MINICONDA_DIR python=3.7 conda
4750

4851
export PATH=$MINICONDA_DIR/bin:$PATH
4952

0 commit comments

Comments
 (0)