]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Pass --upgrade to pip install
authorZack Cerza <zack@redhat.com>
Tue, 14 Jul 2015 15:19:58 +0000 (09:19 -0600)
committerZack Cerza <zack@redhat.com>
Tue, 14 Jul 2015 15:31:15 +0000 (09:31 -0600)
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 <zack@redhat.com>
bootstrap

index 23a4a47e37b892ffbc4575f324e79c54df7a4118..8aa9456334ba8a57b1c048e1a62a536897ccaee0 100755 (executable)
--- 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