From 7f974b7077261d9f01ce3c318d8c2540b7eea75e Mon Sep 17 00:00:00 2001 From: sinergia Date: Tue, 5 Dec 2023 09:15:48 -0500 Subject: [PATCH] feat: Se actualizan dependencias para python3.11 issue #1 --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 7cf5e68..efff49f 100644 --- a/setup.py +++ b/setup.py @@ -13,18 +13,18 @@ with open('README.rst') as readme_file: with open('HISTORY.rst') as history_file: history = history_file.read() -requirements = ['Click>=6.0', - 'zeep==4.0.0', - 'lxml==4.6.3', - 'cryptography==3.3.2', - 'pyOpenSSL==20.0.1', - 'xmlsig==0.1.7', - 'xades==0.2.2', - 'xmlsec==1.3.12', +requirements = ['Click>=8.1.7', + 'zeep==4.2.1', + 'lxml==4.9.3', + 'cryptography==41.0.7', + 'pyOpenSSL==23.3.0', + 'xmlsig==1.0.1', + 'xades==1.0.0', + 'xmlsec==1.3.13', # usamos esta dependencia en runtime # para forzar uso de policy_id de archivo local - 'mock>=2.0.0', - 'xmlschema>=1.8'] + 'mock==5.1.0', + 'xmlschema==2.5.0'] setup_requirements = ['pytest-runner', ]