From 9106605416cd5afa1a0834e6fdaa90794dea2f7f Mon Sep 17 00:00:00 2001 From: Sixto Martin Date: Fri, 28 Jan 2022 17:43:51 +0100 Subject: [PATCH] Fixing lxml to 4.7.0, it seems 4.7.1 had conflicts when the signature inside a encrypted element is validated. See https://github.com/onelogin/python3-saml/issues/292 Also reverted dm.xmlsec.binding to 1.3.7 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index eaca5b8..e192425 100644 --- a/setup.py +++ b/setup.py @@ -32,8 +32,8 @@ }, test_suite='tests', install_requires=[ - 'lxml>=4.7.1', - 'dm.xmlsec.binding==2.1', + 'lxml<4.7.1', + 'dm.xmlsec.binding==1.3.7', 'isodate>=0.6.1', 'defusedxml>=0.7.1', ],