From 0e1f3692ce96549ad05cb6d8daa07a6dfe902d9a Mon Sep 17 00:00:00 2001 From: Allen Gao Date: Mon, 25 Jan 2016 17:56:41 +0800 Subject: [PATCH] Revert "Cap Pip<8 due to pip bug" This reverts commit 308484592dd8bb993dc24a6d6aacefc611cd7e8b. This issue has been fixed after pip 8.0.1 released. TrivialFix Change-Id: I193ef41c2a9efcab3aea54f4949cf6fb1e9b1084 --- tools/install_venv_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py index d1643f85e7..e279159abb 100644 --- a/tools/install_venv_common.py +++ b/tools/install_venv_common.py @@ -113,7 +113,7 @@ class InstallVenv(object): # First things first, make sure our venv has the latest pip and # setuptools and pbr - self.pip_install('pip<8,>=1.4') + self.pip_install('pip>=1.4') self.pip_install('setuptools') self.pip_install('pbr')