Skip to content

Commit

Permalink
Install wheel when installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdaemon committed Mar 15, 2024
1 parent a22a37a commit 38a752c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- name: Install apt deps
run: sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
- name: Install dependencies
run: pip install -Ur requirements-dev.txt
run: |
pip install -U pip wheel
pip install -Ur requirements-dev.txt
- name: Test with pytest
run: pytest
env:
Expand Down

0 comments on commit 38a752c

Please sign in to comment.