diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-12-16 10:47:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 10:47:59 +0100 |
commit | cffe2d4642a7d27a76ddb5516ff9df6a4e9e494d (patch) | |
tree | e1a7b3eba1bec1f438fc0c4c574352eb8a957231 | |
parent | 5e8f2048b5e7a3b06a6529283791f7030521f8a2 (diff) | |
download | rneovim-cffe2d4642a7d27a76ddb5516ff9df6a4e9e494d.tar.gz rneovim-cffe2d4642a7d27a76ddb5516ff9df6a4e9e494d.tar.bz2 rneovim-cffe2d4642a7d27a76ddb5516ff9df6a4e9e494d.zip |
CI/AppVeyor: install "pynvim" python package #9371
-rw-r--r-- | ci/build.ps1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 7097da8c32..1ba3fa8a6b 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -68,14 +68,14 @@ elseif ($compiler -eq 'MSVC') { } # Setup python (use AppVeyor system python) -C:\Python27\python.exe -m pip install neovim ; exitIfFailed -C:\Python35\python.exe -m pip install neovim ; exitIfFailed +C:\Python27\python.exe -m pip install pynvim ; exitIfFailed +C:\Python35\python.exe -m pip install pynvim ; exitIfFailed # Disambiguate python3 move c:\Python35\python.exe c:\Python35\python3.exe $env:PATH = "C:\Python35;C:\Python27;$env:PATH" # Sanity check -python -c "import neovim; print(str(neovim))" ; exitIfFailed -python3 -c "import neovim; print(str(neovim))" ; exitIfFailed +python -c "import pynvim; print(str(pynvim))" ; exitIfFailed +python3 -c "import pynvim; print(str(pynvim))" ; exitIfFailed $env:PATH = "C:\Ruby24\bin;$env:PATH" gem.cmd install neovim |