fix: update virtual environment setup to use python3 -m venv

This commit is contained in:
Sean Whalen
2026-07-09 19:42:10 -04:00
parent fa8faa6b39
commit 15dd69cc28
+3 -3
View File
@@ -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