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