From: Zack Cerza Date: Tue, 14 Jul 2015 15:19:58 +0000 (-0600) Subject: Pass --upgrade to pip install X-Git-Tag: 1.1.0~874^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e427e669edadccf10e25a4ba6924a65becfb470e;p=teuthology.git 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 --- 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