Use new minimal_requirements command in Makefile

This commit is contained in:
Markus Unterwaditzer 2016-03-04 10:34:40 +01:00
parent dd48ac05c9
commit fe5ac51231

View file

@ -79,15 +79,7 @@ install-dev:
set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \
pip install -U --force-reinstall git+https://github.com/kennethreitz/requests; \
elif [ "$$REQUIREMENTS" = "minimal" ]; then \
# FIXME: Looking for a tool that parses setup.py requirements and installs minimum viable version
pip install -U --force-reinstall \
lxml==3.1 \
requests==2.0.1 \
requests_toolbelt==0.4.0 \
click-threading==0.1.2 \
click-log==0.1.3 \
atomicwrites==0.1.7 \
click==5.0; \
pip install -U --force-reinstall $$(python setup.py --quiet minimal_requirements); \
fi
.PHONY: docs