From f9f00e9d7e5987e5ee8de92c9d428dbac4ecfa39 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 24 Dec 2021 18:36:23 -0500 Subject: [PATCH] Switch to using venv convention --- .envrc | 4 ++-- .gitignore | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.envrc b/.envrc index b38208a..d5ab6bd 100644 --- a/.envrc +++ b/.envrc @@ -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 diff --git a/.gitignore b/.gitignore index cea2e7b..9748ac3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,5 @@ htmlcov/ build/ dist/ *.egg-info/ -pyenv/ -/preserves \ No newline at end of file +.venv/ +/preserves