Skip to content

Commit 38a752c

Browse files
committed
Install wheel when installing dependencies
1 parent a22a37a commit 38a752c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
- name: Install apt deps
3737
run: sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
3838
- name: Install dependencies
39-
run: pip install -Ur requirements-dev.txt
39+
run: |
40+
pip install -U pip wheel
41+
pip install -Ur requirements-dev.txt
4042
- name: Test with pytest
4143
run: pytest
4244
env:

0 commit comments

Comments
 (0)