Fix zuul failures due to new version of python-ldap

ceph-manager depends on sysinv which depends on python-ldap
which was updated on Nov 26, 2021 and is causing tox to fail.

By clamping python-ldap to be less than 3.4.0, the pylint
job should be able to pass.

Story: 2008943
Task: 44095
Signed-off-by: albailey <Al.Bailey@windriver.com>
Change-Id: I0086ab34c86884c1f66549b29d5c4cf20a588486
This commit is contained in:
albailey 2021-11-30 10:08:05 -06:00 committed by Al Bailey
parent 6e427ca8e8
commit d5a3e70775
2 changed files with 2 additions and 1 deletions

View File

@ -4,4 +4,5 @@ bashate >= 0.2
isort<5;python_version>="3.0"
pylint<2.1.0;python_version<"3.0" # GPLv2
pylint<2.3.0;python_version>="3.0" # GPLv2
python-ldap<3.4.0

View File

@ -8,7 +8,7 @@ stxdir = {toxinidir}/..
[testenv]
sitepackages = False
basepython = python3
install_command = pip install -v -v -v -U {opts} {packages}
install_command = pip install {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
OS_STDOUT_CAPTURE=1