From 53c40d8b30bebcccc2fc66b0da75fea5eb060565 Mon Sep 17 00:00:00 2001 From: Pavel Dedik Date: Mon, 8 Sep 2025 09:58:22 +0200 Subject: [PATCH] chore: Allow xmlsec higher than 1.3.14 and lxml 6 --- auth_token/version.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auth_token/version.py b/auth_token/version.py index 9d4144e..fc7dcb9 100644 --- a/auth_token/version.py +++ b/auth_token/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 5, 4) +VERSION = (0, 5, 5) def get_version(): diff --git a/setup.py b/setup.py index 8c81cae..349d768 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ 'tqdm>=4.62.3', ], extras_require={ - 'mssso': ['requests>=2.26.0', 'msal>=1.20.0', 'python3-saml>=1.16.0', 'xmlsec==1.3.14', 'lxml<5.3.0'], + 'mssso': ['requests>=2.26.0', 'msal>=1.20.0', 'python3-saml>=1.16.0', 'xmlsec>=1.3.14', 'lxml'], }, zip_safe=False )