Marc Cataford
152b46be8f
* chore: add __pycache__ to ignores * build: pip@23.1, pip-tools@6.13.0 * build: python@3.11.3 * build: general dependency updates * build: pip version range * docs: service list update
14 lines
218 B
Bash
14 lines
218 B
Bash
#!/bin/bash
|
|
|
|
VENV="spadinaistan.venv"
|
|
|
|
python -m pip install pip~=23.1 pip-tools==6.13.0 --no-cache
|
|
|
|
if [ ! -d "./$VENV" ]; then
|
|
python -m venv ./$VENV
|
|
fi
|
|
|
|
source ./$VENV/bin/activate
|
|
|
|
|
|
pip-sync ./requirements.txt
|