Skip to content

Commit 0bf69a9

Browse files
committed
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
1 parent 5cf1190 commit 0bf69a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ skipdist = True
55

66
[testenv]
77
usedevelop = True
8-
install_command = pip install -U {opts} {packages}
8+
install_command = pip install {opts} {packages}
99
setenv = VIRTUAL_ENV={envdir}
1010
OS_STDOUT_CAPTURE=1
1111
OS_STDERR_CAPTURE=1

0 commit comments

Comments
 (0)