From f5132fcc87aa2b1eb43379dd9d05f03ca0fd2c30 Mon Sep 17 00:00:00 2001 From: mtezzele Date: Wed, 29 Apr 2020 11:00:04 +0200 Subject: [PATCH] miniconda3 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c02ef81..d7834de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,11 +25,11 @@ before_install: # We do this conditionally because it saves us some downloading if the # version is the same. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; + wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; else brew update; brew install python; - wget https://repo.continuum.io/miniconda/Miniconda2-latest-MacOSX-x86_64.sh -O miniconda.sh; + wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; fi - chmod +x miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda