mirror of
https://github.com/neovim/neovim.git
synced 2025-12-17 03:45:42 +00:00
provider: update supported Python versions (#13070)
Python 3.9 was released, so we need to add support for the upcoming Python 3.10. Python 3.5 and earlier reached their end-of-life. PEP 478: Python 3.5 Release Schedule: https://www.python.org/dev/peps/pep-0478 PEP 596: Python 3.9 Release Schedule: https://www.python.org/dev/peps/pep-0596 PEP 619: Python 3.10 Release Schedule: https://www.python.org/dev/peps/pep-0619
This commit is contained in:
@@ -29,8 +29,8 @@ endfunction
|
|||||||
function! s:get_python_candidates(major_version) abort
|
function! s:get_python_candidates(major_version) abort
|
||||||
return {
|
return {
|
||||||
\ 2: ['python2', 'python2.7', 'python2.6', 'python'],
|
\ 2: ['python2', 'python2.7', 'python2.6', 'python'],
|
||||||
\ 3: ['python3', 'python3.9', 'python3.8', 'python3.7', 'python3.6', 'python3.5',
|
\ 3: ['python3', 'python3.10', 'python3.9', 'python3.8', 'python3.7',
|
||||||
\ 'python3.4', 'python3.3', 'python']
|
\ 'python3.6', 'python']
|
||||||
\ }[a:major_version]
|
\ }[a:major_version]
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user