This repository has been archived on 2024-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
spud-py/script/bootstrap.sh
Marc Cataford 8e6f2c5794
Some checks failed
/ Tests (push) Failing after 58s
/ Static Analysis (push) Successful in 1m17s
fix: remove upgrade flag from venv generation
2024-04-30 00:05:47 -04:00

12 lines
175 B
Bash
Executable file

#!/usr/bin/bash
VENV=spud.venv
python -m venv "$VENV"
. "$VENV/bin/activate"
pip install -U pip pip-tools
pip-sync requirements.txt requirements_dev.txt
pip install -e .