Browse Source

Merge remote-tracking branch 'origin/develop' into xap

QMK Bot 1 year ago
parent
commit
fedb8a2151
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/python/qmk/cli/__init__.py

+ 2 - 2
lib/python/qmk/cli/__init__.py

@@ -214,8 +214,8 @@ def _eprint(errmsg):
 # Ubuntu 24.04: 3.12
 # Ubuntu 24.04: 3.12
 # void: 3.12
 # void: 3.12
 
 
-if sys.version_info[0] != 3 or sys.version_info[1] < 7:
-    _eprint('Error: Your Python is too old! Please upgrade to Python 3.7 or later.')
+if sys.version_info[0] != 3 or sys.version_info[1] < 9:
+    _eprint('Error: Your Python is too old! Please upgrade to Python 3.9 or later.')
     exit(127)
     exit(127)
 
 
 milc_version = __VERSION__.split('.')
 milc_version = __VERSION__.split('.')