Compare commits

...

1 Commits

Author SHA1 Message Date
Tony Garnock-Jones b9e0bf0520 Use python3 explicitly in .envrc 2024-05-06 12:29:36 +02:00
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