Move everything to Python 3.6 (#8835)

This commit is contained in:
skullydazed
2020-04-18 13:00:56 -07:00
committed by Florian Didron
parent d424a716a0
commit 1dfe06affc
8 changed files with 23 additions and 25 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ def _check_modules(requirements):
if not find_spec(module['import']):
print('Could not find module %s!' % module['name'])
print('Please run `python3 -m pip install -r %s` to install required python dependencies.' % str(qmk_dir / requirements))
print('Please run `python3 -m pip install -r %s` to install required python dependencies.' % (qmk_dir / requirements,))
if developer:
print('You can also turn off developer mode: qmk config user.developer=None')
print()