Pin Python 3.12 as default in uv venv creation

This commit is contained in:
Jeremy McClure 2026-08-06 05:22:52 -04:00
parent 54ae2d5dc5
commit 0cd8ca0e72
No known key found for this signature in database
GPG Key ID: CA27BD8443157067
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ if [ -d "$VENV_DIR" ]; then
echo "Virtual environment already exists at $VENV_DIR/"
else
echo "Creating virtual environment..."
"$UV" venv "$VENV_DIR"
"$UV" venv "$VENV_DIR" --python 3.12
echo "Created $VENV_DIR/"
fi