mirror of
https://github.com/esphome/esphome.git
synced 2024-11-21 22:48:10 +01:00
Don't use pyproject.toml for esphome build (#2980)
This commit is contained in:
parent
33f17f75a0
commit
72fa68849f
1 changed files with 1 additions and 1 deletions
|
@ -5,6 +5,6 @@ set -e
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
|
pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
|
||||||
pip3 install -e .
|
pip3 install --no-use-pep517 -e .
|
||||||
|
|
||||||
pre-commit install
|
pre-commit install
|
||||||
|
|
Loading…
Reference in a new issue