From 84d8cc3ae51a0b98c9c2a82e148e90ee27798961 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Fri, 3 Jun 2022 17:15:45 +0200 Subject: [PATCH] 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. --- ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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