Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e3e0856f96 | |||
| 670a07ff0b | |||
| 9ad519d4a2 |
@@ -27,7 +27,7 @@ jobs:
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python3 -m pip install wheel
|
||||
echo "::add-path::$HOME/.local/bin"
|
||||
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||
|
||||
- name: Install QMK CLI from source
|
||||
run: |
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
"""A program to help you work with qmk_firmware."""
|
||||
|
||||
__version__ = '0.0.37'
|
||||
__version__ = '0.0.38'
|
||||
|
||||
+2
-1
@@ -30,7 +30,8 @@ def find_broken_requirements(requirements):
|
||||
if '#' in line:
|
||||
line = line.split('#')[0]
|
||||
|
||||
module_name = module_import_name = line.split('=')[0] if '=' in line else line
|
||||
module_name = line.split('=')[0] if '=' in line else line
|
||||
module_import_name = module_name.replace('-', '_')
|
||||
|
||||
# Not every module is importable by its own name.
|
||||
if module_name == "pep8-naming":
|
||||
|
||||
Reference in New Issue
Block a user