From b8d7b607813576c5c460472b207d2f4cf82c60a0 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sat, 2 Dec 2017 19:26:26 +0100 Subject: [PATCH] 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: I28b0b0e86f749f6aa81571f79426ba5ca9043a15 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 392c9dd7..f4fd99b7 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ passenv = *_proxy whitelist_externals = bash find rm -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