From 49d84aaa40cf14404998c33f1166b9302510697a Mon Sep 17 00:00:00 2001 From: John Reese Date: Thu, 24 Jan 2019 20:21:56 -0800 Subject: [PATCH] Use venv --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 4af1833..4ed87ac 100644 --- a/makefile +++ b/makefile @@ -8,7 +8,7 @@ setup: pip3 install -U black mypy pylint twine venv: - python3 -m virtualenv .venv + python3 -m venv .venv source .venv/bin/activate && make setup dev echo 'run `source .venv/bin/activate` to use virtualenv'