diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2019-03-02 19:40:35 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2019-03-02 19:40:35 +0900 |
commit | fb5a1f08c89c12fb308c5102f38149481c2c2632 (patch) | |
tree | 2b4924b472c2dbfdb5a5781c3bcffa327a0623e4 /autoload | |
parent | 7853113bfd07a14d6361b1021e1d248c1920f33c (diff) | |
download | deoplete.nvim-fb5a1f08c89c12fb308c5102f38149481c2c2632.zip |
Python 3.6.1+ is required
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/deoplete/init.vim | 2 | ||||
-rw-r--r-- | autoload/health/deoplete.vim | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/autoload/deoplete/init.vim b/autoload/deoplete/init.vim index 8c42252..7dce6e8 100644 --- a/autoload/deoplete/init.vim +++ b/autoload/deoplete/init.vim @@ -243,7 +243,7 @@ import sys vim.vars['deoplete#_python_version_check'] = ( sys.version_info.major, sys.version_info.minor, - sys.version_info.micro) < (3, 5, 0) + sys.version_info.micro) < (3, 6, 1) EOF return g:deoplete#_python_version_check endfunction diff --git a/autoload/health/deoplete.vim b/autoload/health/deoplete.vim index 1643989..bc62db1 100644 --- a/autoload/health/deoplete.vim +++ b/autoload/health/deoplete.vim @@ -37,11 +37,11 @@ function! s:check_required_python_for_deoplete() abort endif if !deoplete#init#_python_version_check() - call health#report_ok('Python3.5+ was successful') + call health#report_ok('Python3.6.1+ was successful') else call health#report_error( - \ 'Python3.5+ was not successful', - \ 'Please use Python3.5+.') + \ 'Python3.6.1+ was not successful', + \ 'Please use Python3.6.1+.') endif endfunction |