From 9309ab1fd15e9966bd22e5849645791466c80380 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 11 Apr 2018 09:08:03 -0700 Subject: [PATCH] Drop virtualenv and use env --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 972f1d9..ac4430f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ env: - virtualenv -p python3 env + python3 -m venv env ./env/bin/pip install -r requirements-dev.txt .PHONY: run