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
This commit is contained in:
Marco Hinz
2021-05-19 19:26:15 +02:00
committed by GitHub
parent f6a86a3d7d
commit 6deae3d14b

View File

@@ -423,10 +423,6 @@ function! s:check_python(version) abort
\ ' This could lead to confusing error messages.') \ ' This could lead to confusing error messages.')
endif 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) call health#report_info('Python version: ' . pyversion)
if s:is_bad_response(status) if s:is_bad_response(status)