Change virtualenv to venv in Makefile

This commit is contained in:
Emmanuelle Helly 2018-10-04 10:18:48 +02:00
parent f0ad722311
commit ee4b19f09e

View File

@ -6,7 +6,7 @@ FLASK = $(VENV)/bin/flask
all: install serve
install:
test -d $(VENV) || virtualenv -p python $(VENV)
test -d $(VENV) || python3 -m venv $(VENV)
$(PIP) install --upgrade --no-cache pip setuptools -e .[test]
clean: