aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-22 23:24:01 +0200
committerJustin M. Keyes <justinkz@gmail.com>2018-10-23 02:01:12 +0200
commit5fbc2eeac596041569d3c50ec3d8dec2b23870ba (patch)
tree7688666612dc8994836faf54026ab4b8a24721b2
parent6dae7776ed0d397b444dc5193c7f11ac09e43042 (diff)
downloadrneovim-5fbc2eeac596041569d3c50ec3d8dec2b23870ba.tar.gz
rneovim-5fbc2eeac596041569d3c50ec3d8dec2b23870ba.tar.bz2
rneovim-5fbc2eeac596041569d3c50ec3d8dec2b23870ba.zip
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.
-rwxr-xr-xci/before_install.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/ci/before_install.sh b/ci/before_install.sh
index 2a8eb9ce1f..86dd78af48 100755
--- a/ci/before_install.sh
+++ b/ci/before_install.sh
@@ -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