Merge pull request #33 from numahell/update-makefile

Change virtualenv to venv in Makefile
This commit is contained in:
Guillaume Ayoub 2018-10-04 12:19:41 +02:00 committed by GitHub
commit 9f647f1c6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ python:
- 3.6
install:
- virtualenv -p python .env
- make install
script:

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: