From d078c1ae3f7171e9e8252474ce5dbaef37a26281 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sat, 29 Oct 2016 22:57:40 +0800 Subject: Makefile: Use the built-in "venv" module available at Python >=3.3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1a5c821..0416565 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ default: # Create virtualenv and install/update the dependencies venv: ${VENV}/bin/activate ${VENV}/bin/activate: requirements.txt - test -d ./${VENV} || virtualenv --python=python3 ${VENV} + test -d ./${VENV} || python3 -m venv ${VENV} ./${VENV}/bin/pip3 install -r requirements.txt touch ${VENV}/bin/activate -- cgit v1.2.2