mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 04:17:01 +00:00 
			
		
		
		
	 84d8cc3ae5
			
		
	
	84d8cc3ae5
	
	
	
		
			
			> 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.
		
			
				
	
	
		
			21 lines
		
	
	
		
			566 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			566 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| set -o pipefail
 | |
| 
 | |
| # Use default CC to avoid compilation problems when installing Python modules.
 | |
| echo "Install neovim module for Python."
 | |
| 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
 | |
| 
 | |
| echo "Install neovim npm package"
 | |
| npm install -g neovim
 | |
| npm link neovim
 | |
| 
 | |
| if [[ $CI_OS_NAME != osx ]]; then
 | |
|   sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log"
 | |
|   perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION'
 | |
| fi
 |