From c13cf2a27d84413887e58a3b63144812b7e7ad35 Mon Sep 17 00:00:00 2001 From: Don Penney Date: Fri, 11 Dec 2020 11:13:56 -0500 Subject: [PATCH] Enable legacy resolver for pip until requirements are updated pylint zuul jobs are failing due to incompatible dependencies that cause the new version of pip to abort. Enabling the legacy resolver (for now) so zuul can pass, while we fix all the requirements across the different repos. Change-Id: I8837e1372f1901afe4e9acbfca3132b0674a876f Related-Bug: 1907125 Co-Authored-By: albailey Signed-off-by: Don Penney --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 07e3172c8..d3ca8eb63 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ skipsdist = True stxdir = {toxinidir}/.. [testenv] -install_command = pip install -U \ +install_command = pip install --use-deprecated legacy-resolver -U \ -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/stein/upper-constraints.txt} \ {opts} {packages} setenv = VIRTUAL_ENV={envdir}