diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2021-05-19 19:26:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 19:26:15 +0200 |
commit | 6deae3d14b59f554a352b9e3738a7a4acb254ea3 (patch) | |
tree | 979466057e5374de6c95b8c56090875be035b566 | |
parent | f6a86a3d7d96627469c6187b103b559cef7f49f0 (diff) | |
download | rneovim-6deae3d14b59f554a352b9e3738a7a4acb254ea3.tar.gz rneovim-6deae3d14b59f554a352b9e3738a7a4acb254ea3.tar.bz2 rneovim-6deae3d14b59f554a352b9e3738a7a4acb254ea3.zip |
fix(health/python3): remove obsolete check (#14590)
Python 3.3 reached its end-of-life 2017-09-29:
https://www.python.org/dev/peps/pep-0398
Closes https://github.com/neovim/neovim/issues/14586
-rw-r--r-- | runtime/autoload/health/provider.vim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index de540405e6..001379c85d 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -423,10 +423,6 @@ function! s:check_python(version) abort \ ' This could lead to confusing error messages.') endif - if a:version == 3 && str2float(pyversion) < 3.3 - call health#report_warn('Python 3.3+ is recommended.') - endif - call health#report_info('Python version: ' . pyversion) if s:is_bad_response(status) |