aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkylo252 <59826753+kylo252@users.noreply.github.com>2022-06-03 17:15:45 +0200
committerGitHub <noreply@github.com>2022-06-03 08:15:45 -0700
commit84d8cc3ae51a0b98c9c2a82e148e90ee27798961 (patch)
treee68fd6fffd266674de24c201eeb3a6c66ffef9bd
parent64e946c50f09d4244c361295f45ec1dab21163dc (diff)
downloadrneovim-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-xci/install.sh2
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