File size: 182 Bytes
520f98d | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
set -eu
root=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
cd "$root"
uv venv --python 3.12 .venv
uv pip install --python .venv/bin/python --requirement requirements.txt
|
520f98d | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
set -eu
root=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
cd "$root"
uv venv --python 3.12 .venv
uv pip install --python .venv/bin/python --requirement requirements.txt
|