mirror of
https://github.com/ansible/awx.git
synced 2026-01-31 17:18:59 -03:30
Install setuptools/Django development packages separately before installing the others.
This commit is contained in:
4
Makefile
4
Makefile
@@ -58,6 +58,8 @@ push:
|
||||
# locally downloaded packages).
|
||||
requirements:
|
||||
@if [ "$(VIRTUAL_ENV)" ]; then \
|
||||
(cd requirements && pip install --no-index setuptools-2.2.tar.gz); \
|
||||
(cd requirements && pip install --no-index Django-1.5.5.tar.gz); \
|
||||
(cd requirements && pip install --no-index -r dev_local.txt); \
|
||||
$(PYTHON) fix_virtualenv_setuptools.py; \
|
||||
else \
|
||||
@@ -68,6 +70,8 @@ requirements:
|
||||
# (downloading from PyPI if necessary).
|
||||
requirements_pypi:
|
||||
@if [ "$(VIRTUAL_ENV)" ]; then \
|
||||
pip install setuptools==2.2; \
|
||||
pip install Django==1.5.5; \
|
||||
pip install -r requirements/dev.txt; \
|
||||
$(PYTHON) fix_virtualenv_setuptools.py; \
|
||||
else \
|
||||
|
||||
Reference in New Issue
Block a user