mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-11 22:34:04 +02:00
17 lines
657 B
Bash
Executable file
17 lines
657 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Remove mypy-dev from requirements_test.txt since the maintainer deletes old versions from PyPI.
|
|
# We'll install the latest version separately below.
|
|
# See: https://github.com/cdce8p/mypy-dev/issues/62
|
|
sed -i '/^mypy-dev/d' core/requirements_test.txt
|
|
|
|
uv pip install -r core/requirements.txt
|
|
uv pip install -r core/requirements_test.txt
|
|
uv pip install -e core/
|
|
uv pip install ulid-transform # this is in Adaptive-lighting's manifest.json
|
|
uv pip install $(python test_dependencies.py)
|
|
|
|
# Install the latest mypy-dev (not pinned since old versions get deleted from PyPI)
|
|
uv pip install --upgrade mypy-dev
|