Codebase list oslo-sphinx / 1de073c
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: I04613ffda0f9a15bcc5a7fe67fafc22fd08cd204 Andreas Jaeger 6 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
22 envlist = pep8
33
44 [testenv]
5 install_command = pip install -U {opts} {packages}
5 install_command = pip install {opts} {packages}
66 deps =
77 -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
88 -r{toxinidir}/test-requirements.txt