diff options
author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2022-06-03 17:15:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 08:15:45 -0700 |
commit | 84d8cc3ae51a0b98c9c2a82e148e90ee27798961 (patch) | |
tree | e68fd6fffd266674de24c201eeb3a6c66ffef9bd | |
parent | 64e946c50f09d4244c361295f45ec1dab21163dc (diff) | |
download | rneovim-84d8cc3ae51a0b98c9c2a82e148e90ee27798961.tar.gz rneovim-84d8cc3ae51a0b98c9c2a82e148e90ee27798961.tar.bz2 rneovim-84d8cc3ae51a0b98c9c2a82e148e90ee27798961.zip |
ci: use python3 explicitly to fix macos warnings #18837
> DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020
Testing `pynvim` compatibility with python2 should not be done in core,
and there's only a provider_spec for python3 either way.
-rwxr-xr-x | ci/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh index c8eef4903a..5925cc7b02 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -5,7 +5,7 @@ set -o pipefail # Use default CC to avoid compilation problems when installing Python modules. echo "Install neovim module for Python." -CC=cc python -m pip -q install --user --upgrade pynvim +CC=cc python3 -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim |