From bd68229c5711b5ab7989679497cd9d6df7ef982d Mon Sep 17 00:00:00 2001 From: Tim Byrne Date: Wed, 29 Jan 2020 00:14:37 -0600 Subject: [PATCH] Use include "venv" instead of "virtualenv" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 58363a0..c9509a1 100644 --- a/Makefile +++ b/Makefile @@ -139,7 +139,7 @@ scripthost: require-docker testenv: @echo 'Creating a local virtual environment in "testenv/"' @echo - virtualenv --python=python3 testenv + python3 -m venv --clear testenv testenv/bin/pip3 install --upgrade pip setuptools testenv/bin/pip3 install --upgrade \ flake8==3.7.8 \