From 00ce9112bd1ecff6719b491a0eec568fa3f11a72 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 9 Jun 2021 11:34:15 +0200 Subject: [PATCH] Update `check_python(minimum=3.6.2)` (#3548) (cherry picked from commit f8ec71e1c2ca1c01763f754332eff393b24c23d7) --- utils/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/general.py b/utils/general.py index 27090e81f301..720a37da7da6 100644 --- a/utils/general.py +++ b/utils/general.py @@ -138,7 +138,7 @@ def check_git_status(err_msg=', for updates see https://github.com/ultralytics/y print(f'{e}{err_msg}') -def check_python(minimum='3.7.0', required=True): +def check_python(minimum='3.6.2', required=True): # Check current python version vs. required python version current = platform.python_version() result = pkg.parse_version(current) >= pkg.parse_version(minimum)