From 834b804d3eda9029d3c66db0ab732a76a22ed08b Mon Sep 17 00:00:00 2001 From: "Vigneshvar.A.S" Date: Sat, 14 Feb 2015 01:05:55 +0530 Subject: [PATCH] Upgrades pip under virtualenv The version of pip supported by python-virtualenv has issues in environment under proxy, hence uninstalling python-virtualenv package and installing the latest version using pip. Change-Id: Id749c37ab7fefa96b35f11816b56b9def5ef4b08 Closes-Bug: 1421541 --- tools/fixup_stuff.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/fixup_stuff.sh b/tools/fixup_stuff.sh index cc5275fe45..f8edd16ecd 100755 --- a/tools/fixup_stuff.sh +++ b/tools/fixup_stuff.sh @@ -123,3 +123,9 @@ if is_fedora; then fi fi + +# The version of pip(1.5.4) supported by python-virtualenv(1.11.4) has +# connection issues under proxy, hence uninstalling python-virtualenv package +# and installing the latest version using pip. +uninstall_package python-virtualenv +pip_install -U virtualenv