mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 21:49:27 -02:30
Force reinstall of setuptools and pip
For some reason -I wasn't cutting it. Even though we were trying to install pip 8.1.2, this was happening: Collecting pip==8.1.2 Using cached pip-8.1.2-py2.py3-none-any.whl Installing collected packages: pip Successfully installed pip-9.0.1 ¯\_(ツ)_/¯
This commit is contained in:
8
Makefile
8
Makefile
@@ -264,8 +264,8 @@ virtualenv_ansible:
|
|||||||
fi; \
|
fi; \
|
||||||
if [ ! -d "$(VENV_BASE)/ansible" ]; then \
|
if [ ! -d "$(VENV_BASE)/ansible" ]; then \
|
||||||
virtualenv --system-site-packages --setuptools $(VENV_BASE)/ansible && \
|
virtualenv --system-site-packages --setuptools $(VENV_BASE)/ansible && \
|
||||||
$(VENV_BASE)/ansible/bin/pip install -I setuptools==23.0.0 && \
|
$(VENV_BASE)/ansible/bin/pip install --force-reinstall setuptools==23.0.0 && \
|
||||||
$(VENV_BASE)/ansible/bin/pip install -I pip==8.1.2; \
|
$(VENV_BASE)/ansible/bin/pip install --force-reinstall pip==8.1.2; \
|
||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -276,8 +276,8 @@ virtualenv_tower:
|
|||||||
fi; \
|
fi; \
|
||||||
if [ ! -d "$(VENV_BASE)/tower" ]; then \
|
if [ ! -d "$(VENV_BASE)/tower" ]; then \
|
||||||
virtualenv --system-site-packages --setuptools $(VENV_BASE)/tower && \
|
virtualenv --system-site-packages --setuptools $(VENV_BASE)/tower && \
|
||||||
$(VENV_BASE)/tower/bin/pip install -I setuptools==23.0.0 && \
|
$(VENV_BASE)/tower/bin/pip install --force-reinstall setuptools==23.0.0 && \
|
||||||
$(VENV_BASE)/tower/bin/pip install -I pip==8.1.2; \
|
$(VENV_BASE)/tower/bin/pip install --force-reinstall pip==8.1.2; \
|
||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user