summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYanis Guenane <yanis@guenane.org>2019-06-17 21:58:38 +0200
committerYanis Guenane <yanis@guenane.org>2019-06-17 21:58:42 +0200
commitec92abf014c51acc50dd4155d67a97623361f99b (patch)
treea93080b83880279661f4fd72aef620d2beba02af /Makefile
parentMerge pull request #4085 from mabashian/4082-inv_obj (diff)
downloadawx-ec92abf014c51acc50dd4155d67a97623361f99b.tar.xz
awx-ec92abf014c51acc50dd4155d67a97623361f99b.zip
Makefile: align pip and setuptools bump
Signed-off-by: Yanis Guenane <yanis@guenane.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a6b3c3cec6..5f3b00e9f1 100644
--- a/Makefile
+++ b/Makefile
@@ -124,8 +124,8 @@ virtualenv_ansible:
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==36.0.1 && \
- $(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed pip==9.0.1; \
+ $(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==19.1.1; \
fi; \
fi