upgrade pip with venv

This commit is contained in:
David Lord 2024-04-06 16:16:27 -07:00
parent 0a8735404d
commit 2deea0ae28
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -1,9 +1,7 @@
#!/bin/bash #!/bin/bash
set -e set -e
python3 -m venv --upgrade-deps .venv
python3 -m venv .venv
. .venv/bin/activate . .venv/bin/activate
pip install -U pip
pip install -r requirements/dev.txt pip install -r requirements/dev.txt
pip install -e . pip install -e .
pre-commit install --install-hooks pre-commit install --install-hooks