summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorShane McDonald <me@shanemcd.com>2019-06-19 22:02:43 +0200
committerShane McDonald <me@shanemcd.com>2019-06-19 22:02:43 +0200
commitaaceccc42665379a49edcc2ddf75a5d4c315658f (patch)
tree2ea6989033f4637b896d6be73b4b3d12d685082a /Makefile
parentMerge pull request #4098 from beeankha/any_notification_migration (diff)
downloadawx-aaceccc42665379a49edcc2ddf75a5d4c315658f.tar.xz
awx-aaceccc42665379a49edcc2ddf75a5d4c315658f.zip
Revert "Fix offline builds"
This reverts commit fe850dff3886be66bc7ad504800e86f179217620.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c97ed02214..5f3b00e9f1 100644
--- a/Makefile
+++ b/Makefile
@@ -123,8 +123,9 @@ virtualenv_ansible:
fi; \
if [ ! -d "$(VENV_BASE)/ansible" ]; then \
virtualenv -p python --system-site-packages $(VENV_BASE)/ansible && \
+ $(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed six packaging appdirs && \
$(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed setuptools==41.0.1 && \
- $(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed pip==18.1; \
+ $(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed pip==19.1.1; \
fi; \
fi
@@ -145,8 +146,7 @@ virtualenv_awx:
fi; \
if [ ! -d "$(VENV_BASE)/awx" ]; then \
$(PYTHON) -m venv --system-site-packages $(VENV_BASE)/awx; \
- $(VENV_BASE)/awx/bin/pip install $(PIP_OPTIONS) --ignore-installed setuptools==41.0.1; \
- $(VENV_BASE)/awx/bin/pip install $(PIP_OPTIONS) --ignore-installed pip==18.1; \
+ $(VENV_BASE)/awx/bin/pip install $(PIP_OPTIONS) --ignore-installed docutils==0.14; \
fi; \
fi