Add wheel to pre-requirements installed by make files (#4475)

This commit is contained in:
Stonedestroyer 2020-10-11 17:09:55 +02:00 committed by GitHub
parent 8ff5a71a5d
commit 4f2763c26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ bumpdeps:
# Development environment # Development environment
newenv: newenv:
$(PYTHON) -m venv --clear .venv $(PYTHON) -m venv --clear .venv
.venv/bin/pip install -U pip setuptools .venv/bin/pip install -U pip setuptools wheel
$(MAKE) syncenv $(MAKE) syncenv
syncenv: syncenv:
.venv/bin/pip install -Ur ./tools/dev-requirements.txt .venv/bin/pip install -Ur ./tools/dev-requirements.txt

View File

@ -21,7 +21,7 @@ exit /B %ERRORLEVEL%
:newenv :newenv
py -3.8 -m venv --clear .venv py -3.8 -m venv --clear .venv
.\.venv\Scripts\python -m pip install -U pip setuptools .\.venv\Scripts\python -m pip install -U pip setuptools wheel
goto syncenv goto syncenv
:syncenv :syncenv