summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2017-12-02 19:30:57 +0100
committerAndreas Jaeger <aj@suse.com>2017-12-02 19:30:57 +0100
commit1de073c3d2323aba6c9070da872482f2ed1f6b75 (patch)
tree8d6888d250add06fc5d6e0c1f5828bea98f769cc
parent417534ba7e06f17a187c3bc623d7af70580f2cd8 (diff)
downloadoslosphinx-1de073c3d2323aba6c9070da872482f2ed1f6b75.tar.gz
Remove -U from pip installqueens-em4.18.0
'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: I04613ffda0f9a15bcc5a7fe67fafc22fd08cd204
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 90d9780..ae632a1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,7 @@ minversion = 2.0
envlist = pep8
[testenv]
-install_command = pip install -U {opts} {packages}
+install_command = pip install {opts} {packages}
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
-r{toxinidir}/test-requirements.txt