diff options
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/install_venv_common.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py index f428c1e..6ce5d00 100644 --- a/tools/install_venv_common.py +++ b/tools/install_venv_common.py @@ -114,9 +114,10 @@ class InstallVenv(object): print('Installing dependencies with pip (this can take a while)...') # First things first, make sure our venv has the latest pip and - # setuptools. - self.pip_install('pip>=1.3') + # setuptools and pbr + self.pip_install('pip>=1.4') self.pip_install('setuptools') + self.pip_install('pbr') self.pip_install('-r', self.requirements) self.pip_install('-r', self.test_requirements) |
