We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007f22d commit 1b10978Copy full SHA for 1b10978
.github/workflows/python-lint.yml
@@ -24,7 +24,7 @@ jobs:
24
sudo apt-get update
25
sudo apt-get install libdbus-glib-1-dev libgirepository1.0-dev
26
python -m pip install --upgrade pip
27
- pip install flake8 pytest
+ pip install flake8 pytest wheel
28
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29
- name: Lint with flake8
30
run: |
Dockerfile
@@ -14,6 +14,7 @@ RUN apk add --no-cache \
14
COPY src/requirements.txt /tmp/
15
16
# Install packages into a directory
17
+RUN pip install wheel --no-cache-dir
18
RUN pip install --user -r /tmp/requirements.txt --no-cache-dir
19
20
0 commit comments