diff options
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/ci/install.sh b/ci/install.sh index 12985098cd..27a8aa05c1 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -11,18 +11,11 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]]; then export PATH="/usr/local/opt/ccache/libexec:$PATH" fi +# Use default CC to avoid compilation problems when installing Python modules. echo "Install neovim module for Python 3." -# Allow failure. pyenv pip3 on travis is broken: -# https://github.com/travis-ci/travis-ci/issues/8363 -CC=cc python3 -m pip -q install --user --upgrade neovim || true - -if ! [ "${TRAVIS_OS_NAME}" = osx ] ; then - # Update PATH for pip. - export PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:$PATH" - # Use default CC to avoid compilation problems when installing Python modules. - echo "Install neovim module for Python 2." - CC=cc python2.7 -m pip -q install --user --upgrade neovim -fi +CC=cc pip3 -q install --user --upgrade neovim +echo "Install neovim module for Python 2." +CC=cc pip2 -q install --user --upgrade neovim echo "Install neovim RubyGem." gem install --no-document --version ">= 0.8.0" neovim |