Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 51e80c2f52 | |||
| 567ef9637e | |||
| e8818c9d23 | |||
| 2710813c51 | |||
| fb69e6d50a | |||
| 135d9f63a1 | |||
| 695cd7eb4d | |||
| 61ca025afd | |||
| 2bd1630621 | |||
| 34517d01b7 | |||
| 0a4d66e13a | |||
| fe0a3af05f |
@@ -55,5 +55,6 @@ jobs:
|
||||
- name: Build and Push to Docker Hub
|
||||
uses: docker/build-push-action@v2.6.1
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: qmkfm/qmk_cli:latest
|
||||
|
||||
+7
-2
@@ -1,8 +1,13 @@
|
||||
FROM qmkfm/base_container
|
||||
|
||||
# Copy package in
|
||||
ADD dist /tmp/dist
|
||||
|
||||
# Install python packages
|
||||
RUN python3 -m pip install --upgrade pip setuptools wheel
|
||||
RUN python3 -m pip install --upgrade nose2 qmk
|
||||
RUN python3 -m pip uninstall -y qmk || true
|
||||
RUN python3 -m pip install --upgrade pip setuptools wheel nose2 && \
|
||||
python3 -m pip install /tmp/dist/qmk-*.whl && \
|
||||
rm -rf /tmp/dist
|
||||
|
||||
# Set the default location for qmk_firmware
|
||||
ENV QMK_HOME /qmk_firmware
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
"""A program to help you work with qmk_firmware."""
|
||||
|
||||
__version__ = '0.1.1'
|
||||
__version__ = '0.2.2'
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
bleach==3.3.0
|
||||
bleach==3.3.1
|
||||
bump2version==1.0.1
|
||||
bumpversion==0.6.0
|
||||
certifi==2021.5.30
|
||||
cffi==1.14.5
|
||||
cffi==1.14.6
|
||||
chardet==4.0.0
|
||||
colorama==0.4.4
|
||||
cryptography==3.4.7
|
||||
docutils==0.17.1
|
||||
idna==2.10
|
||||
importlib-metadata==4.6.1
|
||||
jeepney==0.6.0
|
||||
jeepney==0.7.0
|
||||
keyring==23.0.1
|
||||
packaging==21.0
|
||||
pkginfo==1.7.0
|
||||
pkginfo==1.7.1
|
||||
pycparser==2.20
|
||||
Pygments==2.9.0
|
||||
pyparsing==2.4.7
|
||||
readme-renderer==29.0
|
||||
requests==2.25.1
|
||||
requests==2.26.0
|
||||
requests-toolbelt==0.9.1
|
||||
rfc3986==1.5.0
|
||||
SecretStorage==3.3.1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.1
|
||||
current_version = 0.2.2
|
||||
commit = True
|
||||
tag = True
|
||||
tag_name = {new_version}
|
||||
|
||||
@@ -45,7 +45,7 @@ if __name__ == "__main__":
|
||||
"attrs==21.2.0",
|
||||
"colorama==0.4.4",
|
||||
"coverage==5.5",
|
||||
"dotty-dict==1.3.0",
|
||||
"qmk-dotty-dict==1.3.0.post1",
|
||||
"flake8==3.9.2",
|
||||
"halo==0.0.31",
|
||||
"hid==1.0.4",
|
||||
@@ -59,7 +59,7 @@ if __name__ == "__main__":
|
||||
"pyflakes==2.3.1",
|
||||
"Pygments==2.9.0",
|
||||
"pyrsistent==0.18.0",
|
||||
"pyusb==1.2.0",
|
||||
"pyusb==1.2.1",
|
||||
"setuptools>=45",
|
||||
"six==1.16.0",
|
||||
"spinners==0.0.24",
|
||||
|
||||
Reference in New Issue
Block a user