diff options
author | Shane McDonald <me@shanemcd.com> | 2019-06-19 22:02:43 +0200 |
---|---|---|
committer | Shane McDonald <me@shanemcd.com> | 2019-06-19 22:02:43 +0200 |
commit | aaceccc42665379a49edcc2ddf75a5d4c315658f (patch) | |
tree | 2ea6989033f4637b896d6be73b4b3d12d685082a /Makefile | |
parent | Merge pull request #4098 from beeankha/any_notification_migration (diff) | |
download | awx-aaceccc42665379a49edcc2ddf75a5d4c315658f.tar.xz awx-aaceccc42665379a49edcc2ddf75a5d4c315658f.zip |
Revert "Fix offline builds"
This reverts commit fe850dff3886be66bc7ad504800e86f179217620.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |