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:
Marco Hinz 2019-11-17 14:23:17 +01:00 committed by GitHub
parent a45890e82e
commit 97f1222005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ endfunction
function! s:get_python_candidates(major_version) abort
return {
\ 2: ['python2', 'python2.7', 'python2.6', 'python'],
\ 3: ['python3', 'python3.7', 'python3.6', 'python3.5', 'python3.4', 'python3.3',
\ 'python']
\ 3: ['python3', 'python3.8', 'python3.7', 'python3.6', 'python3.5',
\ 'python3.4', 'python3.3', 'python']
\ }[a:major_version]
endfunction