Skip to content

Commit

Permalink
Bump minimum required Python version (qmk#24554)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr authored Oct 31, 2024
1 parent f1f8750 commit 292e0af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/qmk/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('.')
Expand Down

0 comments on commit 292e0af

Please sign in to comment.