Remove --use-deprecated legacy-resolver flag

The pip team is planning to depreciate the
'--use-deprecated legacy-resolver'install option.
While a firm date has yet to be set, We need to be
ready for the change.

Test Plan:

PASS: Verified that tox runs without issues
PASS: Generate auditd package.
PASS: Install audit package and check if pod is running.
PASS: Check auditable events.

Closes-Bug: 1966069

Signed-off-by: Karla Felix <karla.karolinenogueirafelix@windriver.com>
Change-Id: Icbe2fb324f220de194dc30686b65ad2d0d466b2d
This commit is contained in:
Karla Felix 2022-06-24 10:33:29 -04:00
parent 27e387be99
commit ede964b183
2 changed files with 3 additions and 5 deletions

View File

@ -1,2 +1,2 @@
pbr>=0.5
PyYAML==3.10
PyYAML>=3.10

View File

@ -22,8 +22,7 @@ basepython = python3
whitelist_externals = bash
find
install_command = pip install --use-deprecated legacy-resolver \
-v -v -v \
install_command = pip install -v -v -v \
-c{toxinidir}/upper-constraints.txt \
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/stein/upper-constraints.txt} \
{opts} {packages}
@ -85,8 +84,7 @@ commands =
[testenv:py39]
basepython = python3.9
install_command = pip install --use-deprecated legacy-resolver \
-v -v -v \
install_command = pip install -v -v -v \
-c{toxinidir}/upper-constraints.txt \
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/starlingx/root/raw/branch/master/build-tools/requirements/debian/upper-constraints.txt} \
{opts} {packages}