8000 FIX do not update conda as a temporary work-around for conda issue · scikit-learn/scikit-learn@8de18e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8de18e6

Browse files
committed
FIX do not update conda as a temporary work-around for conda issue
conda/conda#6030
1 parent 8fb648a commit 8de18e6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build_tools/circle/build_doc.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
102102
-O miniconda.sh
103103
chmod +x miniconda.sh && ./miniconda.sh -b -p $MINICONDA_PATH
104104
export PATH="$MINICONDA_PATH/bin:$PATH"
105-
conda update --yes --quiet conda
105+
# Temporary work-around (2017-09-27)
106+
# conda update --yes --quiet conda
106107

107108
# Configure the conda environment and put it in the path using the
108109
# provided versions

build_tools/travis/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ if [[ "$DISTRIB" == "conda" ]]; then
3535
MINICONDA_PATH=/home/travis/miniconda
3636
chmod +x miniconda.sh && ./miniconda.sh -b -p $MINICONDA_PATH
3737
export PATH=$MINICONDA_PATH/bin:$PATH
38-
conda update --yes conda
38+
# Temporary work-around (2017-09-27)
39+
# conda update --yes conda
3940

4041
# Configure the conda environment and put it in the path using the
4142
# provided versions

0 commit comments

Comments
 (0)
0