mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 21:25:04 -07:00
provider/python: add python3.8 executable (#11402)
Python 3.8 was released 2019-10-14: https://www.python.org/dev/peps/pep-0569
This commit is contained in:
parent
a45890e82e
commit
97f1222005
@ -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.7', 'python3.6', 'python3.5', 'python3.4', 'python3.3',
|
\ 3: ['python3', 'python3.8', 'python3.7', 'python3.6', 'python3.5',
|
||||||
\ 'python']
|
\ 'python3.4', 'python3.3', 'python']
|
||||||
\ }[a:major_version]
|
\ }[a:major_version]
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user