From ec92abf014c51acc50dd4155d67a97623361f99b Mon Sep 17 00:00:00 2001 From: Yanis Guenane Date: Mon, 17 Jun 2019 21:58:38 +0200 Subject: [PATCH] Makefile: align pip and setuptools bump Signed-off-by: Yanis Guenane --- Makefile | 4 ++-- 1 file 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