Compare commits

..

3 Commits

4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -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
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.37'
__version__ = '0.0.38'
+2 -1
View File
@@ -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":
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.37
current_version = 0.0.38
commit = True
tag = True
tag_name = {new_version}