Skip to content

Commit cdd3e73

Browse files
committed
TEST: On Travis CI, fetch Miniconda using HTTPS
Prefer HTTPS, instead of HTTP, to improve security. The URLs are now https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh and https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh for Python 2 and 3, respectively.
1 parent 2461c07 commit cdd3e73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ before_install:
2020
- sh -e /etc/init.d/xvfb start
2121
# use miniconda to install numpy/scipy, to avoid lengthy build from source
2222
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
23-
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
23+
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
2424
else
25-
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
25+
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
2626
fi
2727
- bash miniconda.sh -b -p $HOME/miniconda
2828
- export PATH="$HOME/miniconda/bin:$PATH"

0 commit comments

Comments
 (0)