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