aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorErovia <erovia@users.noreply.github.com>2020-02-20 01:10:56 +0100
committerskullydazed <skullydazed@users.noreply.github.com>2020-04-08 09:31:14 -0700
commit724f20ed32758b0c5d91ad4b7ba4a9348e152eeb (patch)
tree593ede983bd5a5b0a2e70afe63594dc6f87ede8c /bin
parentc61f016fa491502920941fd03cdab6453d126e67 (diff)
downloadfirmware-724f20ed32758b0c5d91ad4b7ba4a9348e152eeb.tar.gz
firmware-724f20ed32758b0c5d91ad4b7ba4a9348e152eeb.tar.bz2
firmware-724f20ed32758b0c5d91ad4b7ba4a9348e152eeb.zip
Use milc for config check, requirements fixes
Use milc's config finding and parsing to check if the user is a developer or not. 'requirements-dev.txt' will now load 'requirements.txt', so no need to run pip twice. Add missing 'yapf' dependency to 'requirements-dev.txt'.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/qmk10
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/qmk b/bin/qmk
index e4fb057ff..b83f111e5 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -13,8 +13,8 @@ qmk_dir = script_dir.parent
python_lib_dir = Path(qmk_dir / 'lib' / 'python').resolve()
sys.path.append(str(python_lib_dir))
-# QMK CLI user config file
-config_file = Path(Path.home() / '.config/qmk/qmk.ini')
+# Setup the CLI
+import milc # noqa
def _check_modules(requirements):
@@ -24,7 +24,7 @@ def _check_modules(requirements):
for line in fd.readlines():
line = line.strip().replace('<', '=').replace('>', '=')
- if line[0] == '#':
+ if len(line) == 0 or line[0] == '#' or '-r' in line:
continue
if '#' in line:
@@ -53,12 +53,10 @@ developer = False
_check_modules('requirements.txt')
# For developers additional modules are needed
-if config_file.exists() and 'developer = True' in config_file.read_text():
+if milc.cli.config.user.developer:
developer = True
_check_modules('requirements-dev.txt')
-# Setup the CLI
-import milc # noqa
milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}'