diff options
author | James McCoy <jamessan@jamessan.com> | 2022-01-28 13:45:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 13:45:32 -0500 |
commit | 6fd1b12de12d87a57e0c7c485f959805a1f996c3 (patch) | |
tree | 0b8a8df991c98b887e41d8d43168f30b1d9a0d29 /ci/install.sh | |
parent | b396387ec8c1377f07632f606dca7a3ac7b37a1b (diff) | |
parent | b30ac599f83d6399f2f77f4139f448f722de7244 (diff) | |
download | rneovim-6fd1b12de12d87a57e0c7c485f959805a1f996c3.tar.gz rneovim-6fd1b12de12d87a57e0c7c485f959805a1f996c3.tar.bz2 rneovim-6fd1b12de12d87a57e0c7c485f959805a1f996c3.zip |
Merge pull request #17206 from dundargoc/ci/remove-python2
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ci/install.sh b/ci/install.sh index bd42274b49..894e090de2 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -4,12 +4,8 @@ set -e set -o pipefail # Use default CC to avoid compilation problems when installing Python modules. -echo "Install neovim module for Python 3." -CC=cc python3 -m pip -q install --user --upgrade pynvim -if python2 -m pip -c True 2>&1; then - echo "Install neovim module for Python 2." - CC=cc python2 -m pip -q install --user --upgrade pynvim -fi +echo "Install neovim module for Python." +CC=cc python -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim |