Skip to content

Commit

Permalink
Merge pull request #1150 from dwf/travis_conda_wtf
Browse files Browse the repository at this point in the history
Switch to Miniconda3 for Python 3.x Travis runs
  • Loading branch information
dwf committed Oct 12, 2016
2 parents b93253d + 6aed2ba commit 24f24c8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Expand Up @@ -27,7 +27,12 @@ matrix:
env: TESTS=documentation FLOATX=float64
before_install:
- # Setup Python environment with BLAS libraries
- wget -q http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- |
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
wget -q http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
else
wget -q http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
fi
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
Expand Down

0 comments on commit 24f24c8

Please sign in to comment.