From a19406b39dbc45db0bbae8d0b7da9d6281f9af1e Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 2 Apr 2022 15:05:00 +0200 Subject: [PATCH] Update minimum Python>=3.7.0 (#7247) --- utils/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/general.py b/utils/general.py index 9622a32c5c70..379e9e0f47a4 100755 --- a/utils/general.py +++ b/utils/general.py @@ -295,7 +295,7 @@ def check_git_status(): LOGGER.info(emojis(s)) # emoji-safe -def check_python(minimum='3.6.2'): +def check_python(minimum='3.7.0'): # Check current python version vs. required python version check_version(platform.python_version(), minimum, name='Python ', hard=True)