Skip to content

Commit 1b10978

Browse files
committed
Add wheel package to build steps
1 parent 007f22d commit 1b10978

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/python-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sudo apt-get update
2525
sudo apt-get install libdbus-glib-1-dev libgirepository1.0-dev
2626
python -m pip install --upgrade pip
27-
pip install flake8 pytest
27+
pip install flake8 pytest wheel
2828
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2929
- name: Lint with flake8
3030
run: |

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ RUN apk add --no-cache \
1414
COPY src/requirements.txt /tmp/
1515

1616
# Install packages into a directory
17+
RUN pip install wheel --no-cache-dir
1718
RUN pip install --user -r /tmp/requirements.txt --no-cache-dir
1819

1920

0 commit comments

Comments
 (0)