diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-22 23:24:01 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-10-23 02:01:12 +0200 |
commit | 5fbc2eeac596041569d3c50ec3d8dec2b23870ba (patch) | |
tree | 7688666612dc8994836faf54026ab4b8a24721b2 | |
parent | 6dae7776ed0d397b444dc5193c7f11ac09e43042 (diff) | |
download | rneovim-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-x | ci/before_install.sh | 4 |
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 |