From 15dd69cc287f97ed63c4b0964549e66ad2303090 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Thu, 9 Jul 2026 19:42:10 -0400 Subject: [PATCH] fix: update virtual environment setup to use python3 -m venv --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 4bd9d8fb..61b16ce7 100755 --- a/build.sh +++ b/build.sh @@ -2,11 +2,11 @@ set -e -if [ ! -d "venv" ]; then - virtualenv venv || exit +if [ ! -d ".venv" ]; then + python3 -m venv .venv || exit fi -. venv/bin/activate +. .venv/bin/activate pip install .[build] ruff format . cd docs