diff options
| author | Joel Challis | 2025-03-20 04:04:10 +0100 |
|---|---|---|
| committer | GitHub | 2025-03-20 04:04:10 +0100 |
| commit | f820a186d489911b7da3907163c319385176f6d9 (patch) | |
| tree | b73477f55125a44b6505b4848245818a1e12f499 /lib/python | |
| parent | 3484f0a0dffd264ae3bef70ce2a8961489c16f50 (diff) | |
Align to latest CLI dependencies (#24553)
* Align to latest CLI dependencies
* Update docs
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/qmk/cli/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py index 3f2ba9ce3c..cb949d9a71 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py @@ -215,7 +215,7 @@ if sys.version_info[0] != 3 or sys.version_info[1] < 9: milc_version = __VERSION__.split('.') -if int(milc_version[0]) < 2 and int(milc_version[1]) < 4: +if int(milc_version[0]) < 2 and int(milc_version[1]) < 9: requirements = Path('requirements.txt').resolve() _eprint(f'Your MILC library is too old! Please upgrade: python3 -m pip install -U -r {str(requirements)}') |