diff options
| author | Jenkins <jenkins@review.openstack.org> | 2011-10-12 15:24:43 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2011-10-12 15:24:43 +0000 |
| commit | 7ca47db2c7b38078a1c9b8a8d820d1527edbef38 (patch) | |
| tree | df2bfe0cce0d777ee2a61d0d94547fd4c309bfdc | |
| parent | f0a2907e58bdfacf92856817597d359e4a2b0678 (diff) | |
| parent | f373a0f6f83181c9b51d7d7faa2e055d9ad92868 (diff) | |
| download | nova-7ca47db2c7b38078a1c9b8a8d820d1527edbef38.tar.gz nova-7ca47db2c7b38078a1c9b8a8d820d1527edbef38.tar.xz nova-7ca47db2c7b38078a1c9b8a8d820d1527edbef38.zip | |
Merge "install_venv: pass the --upgrade argument to pip install"
| -rw-r--r-- | tools/install_venv.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py index 19bf04da5..a137f1156 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -98,7 +98,8 @@ def create_virtualenv(venv=VENV): def pip_install(*args): - run_command(['tools/with_venv.sh', 'pip', 'install'] + list(args), + run_command(['tools/with_venv.sh', + 'pip', 'install', '--upgrade'] + list(args), redirect_output=False) |
