From 6deae3d14b59f554a352b9e3738a7a4acb254ea3 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 19 May 2021 19:26:15 +0200 Subject: 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 --- runtime/autoload/health/provider.vim | 4 ---- 1 file changed, 4 deletions(-) (limited to 'runtime') 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) -- cgit