From 55bce593f04b64a383e300ae9967ce690f95c70d Mon Sep 17 00:00:00 2001 From: Jocelyn Delalande Date: Sun, 26 Jul 2020 19:55:44 +0200 Subject: Use venv module rather than virtualenv - simpler to use - lighter dependency (or no dependency at all, depending on python distribution) - retrocompatible virtualenv package from pip to acheive virtual environment feature is no longer needed, except for projects which need to support py2, which is no longer our case. Also, reword "virtualenv" to "virtual environment" in doc, to avoid confusion with pip package name. Ref #483 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a681709..e2fbf32 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VIRTUALENV = virtualenv --python=python3 +VIRTUALENV = python3 -m venv SPHINX_BUILDDIR = docs/_build VENV := $(shell realpath $${VIRTUAL_ENV-.venv}) PYTHON = $(VENV)/bin/python3 -- cgit v1.1