diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-19 20:28:37 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-06-19 20:28:37 +0200 |
commit | 487eaf8d456de17449ade6826ca0d13a64db576d (patch) | |
tree | 83bd12bd72750afd78f9168a6484d549b43e9ca8 /ci/before_install.sh | |
parent | 352d5a971344e2402aaa8704b802fa7dfaaa3050 (diff) | |
download | rneovim-487eaf8d456de17449ade6826ca0d13a64db576d.tar.gz rneovim-487eaf8d456de17449ade6826ca0d13a64db576d.tar.bz2 rneovim-487eaf8d456de17449ade6826ca0d13a64db576d.zip |
CI: use -m to invoke pip #10275
Also install "pynvim" instead of "neovim".
Ref: https://github.com/neovim/neovim/pull/10228#discussion_r295266859
Diffstat (limited to 'ci/before_install.sh')
-rwxr-xr-x | ci/before_install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/before_install.sh b/ci/before_install.sh index 79738d8bbf..ff2abc0e12 100755 --- a/ci/before_install.sh +++ b/ci/before_install.sh @@ -32,8 +32,8 @@ if [[ "${TRAVIS_OS_NAME}" != osx ]] && command -v pyenv; then python2 --version python --version - pip3 --version - pip2 --version + python3 -m pip --version + python2 -m pip --version ) 2>&1 | sed 's/^/ /' fi |