From e427e669edadccf10e25a4ba6924a65becfb470e Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 14 Jul 2015 09:19:58 -0600 Subject: [PATCH] Pass --upgrade to pip install This should tell pip to use the latest version of packages (taking pinning into account) - so that we can install newer versions of packages that happen to be installed system-wide. This won't affect libvirt-python as it is omitted from our list of requirements. Signed-off-by: Zack Cerza --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 23a4a47e37..8aa9456334 100755 --- a/bootstrap +++ b/bootstrap @@ -117,4 +117,4 @@ if [ -z "$NO_CLOBBER" ] || [ ! -e ./virtualenv ]; then ./virtualenv/bin/pip install setuptools --no-use-wheel --upgrade fi -./virtualenv/bin/pip install -r requirements.txt +./virtualenv/bin/pip install --upgrade -r requirements.txt -- 2.39.5