commit | 308484592dd8bb993dc24a6d6aacefc611cd7e8b | [log] [tgz] |
---|---|---|
author | Xav Paice <xav@catalyst.net.nz> | Thu Jan 21 16:52:03 2016 +1300 |
committer | Xav Paice <xav@catalyst.net.nz> | Thu Jan 21 16:52:03 2016 +1300 |
tree | b3046ff15c91b9c35348d647beb09e6382a977a3 | |
parent | b7d85910d5857487b7c01453b63aa51aa1583bcf [diff] |
Cap Pip<8 due to pip bug Due to https://github.com/pypa/pip/issues/3384 in pip v8, this change puts a cap on pip, in a similar manner to https://review.openstack.org/#/c/269954/ Change-Id: I20b8b597e8806a7ee21d947eccc98e4ae7e00c3b Closes-Bug: 1536290
diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py index e279159..d1643f8 100644 --- a/tools/install_venv_common.py +++ b/tools/install_venv_common.py
@@ -113,7 +113,7 @@ # First things first, make sure our venv has the latest pip and # setuptools and pbr - self.pip_install('pip>=1.4') + self.pip_install('pip<8,>=1.4') self.pip_install('setuptools') self.pip_install('pbr')