diff options
| author | Andreas Jaeger <aj@suse.com> | 2017-12-02 19:21:22 +0100 |
|---|---|---|
| committer | Andreas Jaeger <aj@suse.com> | 2017-12-02 19:21:22 +0100 |
| commit | 0bf69a94626805bc03cc057ecf1ae022b403bc8a (patch) | |
| tree | 5663132a3128e5391cc327f0c7c0472b4c7bc9b1 | |
| parent | 5cf11908790e7c1f664ea6b87cd69a640b632bda (diff) | |
| download | python-openstackclient-0bf69a94626805bc03cc057ecf1ae022b403bc8a.tar.gz | |
Remove -U from pip install
'pip install -U' ugrades specified packages, this is not necessary
since we use constraints, remove the parameter '-U' from the line.
With tools/tox_install.sh - which a previous change of mine removed -
the -U was not harmful, but with the current set up, it might cause
upgrades, so remove it.
Change-Id: I9f818d4b78e7540498a1501be14cd63ac3e891b3
| -rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ skipdist = True [testenv] usedevelop = True -install_command = pip install -U {opts} {packages} +install_command = pip install {opts} {packages} setenv = VIRTUAL_ENV={envdir} OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 |
