mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	fix(provider)!: drop Python 3.7, 3.8 support #33088
Problem: #33022 didn't update `min_version` to 3.9, therefore Python 3.7
and 3.8 are still available.
Solution: Update `min_version` to 3.9.
(cherry picked from commit ade58885c4)
			
			
This commit is contained in:
		
				
					committed by
					
						
						github-actions[bot]
					
				
			
			
				
	
			
			
			
						parent
						
							53def2a877
						
					
				
				
					commit
					bbf912d72f
				
			@@ -35,7 +35,7 @@ if you already have it (some package managers install the module with Nvim
 | 
			
		||||
itself).
 | 
			
		||||
 | 
			
		||||
For Python 3 plugins:
 | 
			
		||||
1. Make sure Python 3.4+ is available in your $PATH.
 | 
			
		||||
1. Make sure Python 3.9+ is available in your $PATH.
 | 
			
		||||
2. Install the module (try "python" if "python3" is missing): >bash
 | 
			
		||||
   python3 -m pip install --user --upgrade pynvim
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
local M = {}
 | 
			
		||||
local min_version = '3.7'
 | 
			
		||||
local min_version = '3.9'
 | 
			
		||||
local s_err ---@type string?
 | 
			
		||||
local s_host ---@type string?
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user