This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/script/bootstrap
Marc Cataford 152b46be8f
chore: general tooling updates (#17)
* 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
2023-04-29 11:36:53 -04:00

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