Use python3 explicitly in .envrc

This commit is contained in:
Tony Garnock-Jones 2024-05-06 12:29:36 +02:00
parent 05fd3ca22e
commit b9e0bf0520
1 changed files with 1 additions and 1 deletions

2
.envrc
View File

@ -1,6 +1,6 @@
if ! [ -d .venv ]
then
python -m venv .venv
python3 -m venv .venv
. .venv/bin/activate
pip install -e '.[dev]'
else