fix the Makefile

This commit is contained in:
Andreas Zweili 2019-10-13 09:44:52 +01:00
parent 96f47b2baf
commit 226f8f5545
1 changed files with 2 additions and 3 deletions

View File

@ -12,16 +12,15 @@ developement:
python3 -m venv venv
( \
source venv/bin/activate; \
pip3 install -e .; \
pip3 install -r requirements/development.txt; \
pip3 install . -e; \
)
venv:
python3 -m venv venv
( \
source venv/bin/activate; \
pip3 install -r requirements/base.txt; \
pip3 install -e
pip3 install .; \
)
clean: