Switch to using venv convention

This commit is contained in:
Tony Garnock-Jones 2021-12-24 18:36:23 -05:00
parent d33bb6e48e
commit f9f00e9d7e
2 changed files with 4 additions and 4 deletions

4
.envrc
View File

@ -1,3 +1,3 @@
[ -d pyenv ] || virtualenv -p python3 pyenv
. pyenv/bin/activate
[ -d .venv ] || python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt

4
.gitignore vendored
View File

@ -4,5 +4,5 @@ htmlcov/
build/
dist/
*.egg-info/
pyenv/
/preserves
.venv/
/preserves