commit: 292e0af2934e2c1dc21405e48f924f6618054584
parent f1f875063c47cf875d60f207a2f40d140fefd5e5
Author: Joel Challis <git@zvecr.com>
Date: Thu, 31 Oct 2024 23:21:20 +0000
Bump minimum required Python version (#24554)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py
@@ -207,8 +207,8 @@ def _eprint(errmsg):
# Ubuntu 24.04: 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)
milc_version = __VERSION__.split('.')