neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 84d8cc3ae51a0b98c9c2a82e148e90ee27798961
parent 64e946c50f09d4244c361295f45ec1dab21163dc
Author: kylo252 <59826753+kylo252@users.noreply.github.com>
Date:   Fri,  3 Jun 2022 17:15:45 +0200

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.
Diffstat:
Mci/install.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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