2015-09-17 00:38:52 -07:00
|
|
|
#!/bin/sh
|
2017-01-02 22:04:09 +01:00
|
|
|
# Resolve all dependencies that the application requires to run.
|
2015-09-17 00:38:52 -07:00
|
|
|
|
2017-01-02 22:04:09 +01:00
|
|
|
# Stop on errors
|
|
|
|
set -e
|
2015-09-17 00:38:52 -07:00
|
|
|
|
2015-09-17 00:35:26 -07:00
|
|
|
cd "$(dirname "$0")/.."
|
2017-01-25 02:20:18 +02:00
|
|
|
|
2019-10-23 09:12:57 +03:00
|
|
|
echo "Installing development dependencies..."
|
2022-12-23 10:21:49 +13:00
|
|
|
python3 -m pip install wheel --constraint homeassistant/package_constraints.txt --upgrade
|
2024-05-17 16:18:44 +02:00
|
|
|
python3 -m pip install colorlog $(grep awesomeversion requirements.txt) --constraint homeassistant/package_constraints.txt --upgrade
|
2023-04-27 22:39:29 +02:00
|
|
|
python3 -m pip install -r requirements_test.txt -c homeassistant/package_constraints.txt --upgrade
|