Install wheel in CI.

This commit is contained in:
Matthew Stratford 2021-09-11 21:19:45 +01:00
parent 2cc4a57a15
commit b405b7b1ff
4 changed files with 4 additions and 0 deletions

View file

@ -12,6 +12,7 @@ apt install libportaudio2
python3 -m venv ../venv
source ../venv/bin/activate
pip3 install wheel
pip3 install -r requirements.txt
pip3 install -r requirements-linux.txt
pip3 install -e ../

View file

@ -10,6 +10,7 @@ echo "BRANCH: str = \"$build_branch\"" >> ../build.py
python3 -m venv ../venv
source ../venv/bin/activate
pip3 install wheel
pip3 install -r requirements.txt
pip3 install -r requirements-macos.txt
pip3 install -e ..\

View file

@ -17,6 +17,7 @@ if "%1" == "no-venv" goto skip-venv
:skip-venv
pip install wheel
pip install -r requirements.txt
pip install -r requirements-windows.txt
pip install -e ..\

View file

@ -1,3 +1,4 @@
wheel
flake8
black
autopep8