From 09098050d4beb9e807abdcc7786e2e177a5ca4fa Mon Sep 17 00:00:00 2001 From: Guillaume Valadon Date: Mon, 5 Mar 2018 13:39:42 +0100 Subject: [PATCH] travis/osx - Python3 and tox installations fixed --- .travis/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/install.sh b/.travis/install.sh index b7a1c3b5746..23f70c89307 100644 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -3,8 +3,8 @@ PIP=`which pip || (python --version 2>&1 | grep -q 'Python 2' && which pip2) || # Install Python3 on osx if [ "$TRAVIS_OS_NAME" = "osx" ] && [ ! -z "$TOXENV" ] then - $PIP install --user -U tox - brew install python3 + brew upgrade python + pip3 install tox exit 0 fi