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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)