From 0cd8ca0e7251c3ace247ab2dcbb9da5fc8e80b05 Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Thu, 6 Aug 2026 05:22:52 -0400 Subject: [PATCH] Pin Python 3.12 as default in uv venv creation --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 40a5453..47bec66 100755 --- a/install.sh +++ b/install.sh @@ -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