summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2017-12-02 19:21:22 +0100
committerAndreas Jaeger <aj@suse.com>2017-12-02 19:21:22 +0100
commit0bf69a94626805bc03cc057ecf1ae022b403bc8a (patch)
tree5663132a3128e5391cc327f0c7c0472b4c7bc9b1
parent5cf11908790e7c1f664ea6b87cd69a640b632bda (diff)
downloadpython-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.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 2bf7c6b2..26c643c8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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