CI/Travis/macOS: use default Travis-provided python/pip

Despite #9095, `brew upgrade python` broke again, somehow.

We should not bother attempting to force a python version. Instead use
whatever python Travis provides on the macOS image.
This commit is contained in:
Justin M. Keyes 2018-10-22 23:24:01 +02:00
parent 6dae7776ed
commit 5fbc2eeac5
1 changed files with 1 additions and 3 deletions

View File

@ -9,8 +9,6 @@ fi
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
>/dev/null brew update
echo "Upgrade Python 3"
>/dev/null brew upgrade python
fi
echo 'python info:'
@ -27,7 +25,7 @@ echo 'python info:'
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
echo "Upgrade Python 3 pip"
pip3 -q install --user --upgrade pip
python3 -m pip -q install --user --upgrade pip
else
echo "Upgrade Python 2 pip"
python2.7 -m pip -q install --user --upgrade pip