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:
parent
6e427ca8e8
commit
d5a3e70775
@ -4,4 +4,5 @@ bashate >= 0.2
|
|||||||
isort<5;python_version>="3.0"
|
isort<5;python_version>="3.0"
|
||||||
pylint<2.1.0;python_version<"3.0" # GPLv2
|
pylint<2.1.0;python_version<"3.0" # GPLv2
|
||||||
pylint<2.3.0;python_version>="3.0" # GPLv2
|
pylint<2.3.0;python_version>="3.0" # GPLv2
|
||||||
|
python-ldap<3.4.0
|
||||||
|
|
||||||
|
2
tox.ini
2
tox.ini
@ -8,7 +8,7 @@ stxdir = {toxinidir}/..
|
|||||||
[testenv]
|
[testenv]
|
||||||
sitepackages = False
|
sitepackages = False
|
||||||
basepython = python3
|
basepython = python3
|
||||||
install_command = pip install -v -v -v -U {opts} {packages}
|
install_command = pip install {opts} {packages}
|
||||||
setenv =
|
setenv =
|
||||||
VIRTUAL_ENV={envdir}
|
VIRTUAL_ENV={envdir}
|
||||||
OS_STDOUT_CAPTURE=1
|
OS_STDOUT_CAPTURE=1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user