From 34d2ecc8307ab4784e9c36a10a9cba700813f04c Mon Sep 17 00:00:00 2001 From: Nikolai Starodubtsev Date: Tue, 26 Jan 2016 17:25:13 +0300 Subject: [PATCH] Remove cap for pip version Since pip 8.0.2 is released the cap for pip vestion is no longer needed Change-Id: Ib404911746147e8fc1d71f0741a6bf06d56829e5 --- 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 1f4b1545..8c205a09 100644 --- a/tools/install_venv_common.py +++ b/tools/install_venv_common.py @@ -112,7 +112,7 @@ class InstallVenv(object): # First things first, make sure our venv has the latest pip and # setuptools and pbr - self.pip_install('pip>=1.4,<8') + self.pip_install('pip>=1.4') self.pip_install('setuptools') self.pip_install('pbr')