provider: add Python 3.6 (#5886)

This commit is contained in:
Marco Hinz 2017-01-05 21:29:31 +01:00 committed by Justin M. Keyes
parent 7a344c795f
commit 1fbee630a8

View File

@ -57,7 +57,8 @@ function! provider#pythonx#Detect(major_ver) abort
if exists('g:python3_host_prog')
return [g:python3_host_prog, '']
else
let progs = ['python3', 'python3.5', 'python3.4', 'python3.3', 'python']
let progs = ['python3', 'python3.7', 'python3.6', 'python3.5',
\ 'python3.4', 'python3.3', 'python']
endif
endif