diff options
| author | Chuck Short <chuck.short@canonical.com> | 2013-08-06 17:43:46 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-08-14 11:48:34 +0000 |
| commit | 7b08b98a3bec2fbb9e7ee503f560880802fba412 (patch) | |
| tree | b73217034631c2966f49cd2697f5c4d3a74bf397 /tools | |
| parent | 2f5c937d4cb99234780f9544613c36a62ef3d285 (diff) | |
| download | python-cinderclient-7b08b98a3bec2fbb9e7ee503f560880802fba412.tar.gz | |
Sync strutils from oslo
Sync strutils from oslo. Also import apiclient,
gettextutils, and importutils.
Change-Id: I565fd2cf40f2ea21842c6dbd581430b25d99fea6
Signed-off-by: Chuck Short <chuck.short@canonical.com>
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) |
