Install wheel in CI.
This commit is contained in:
parent
2cc4a57a15
commit
b405b7b1ff
4 changed files with 4 additions and 0 deletions
|
@ -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 ../
|
||||
|
|
|
@ -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 ..\
|
||||
|
|
|
@ -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 ..\
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
wheel
|
||||
flake8
|
||||
black
|
||||
autopep8
|
||||
|
|
Loading…
Reference in a new issue