From fc904f8f92a6ecdc48b7631f3a9b9e07582eef4a Mon Sep 17 00:00:00 2001 From: bit4bit Date: Sat, 5 Feb 2022 18:19:27 +0000 Subject: [PATCH] se especifican las dependencias para no evitar uso de setuptools_rust FossilOrigin-Name: b31db1100a014ee5e60712e36650c4e0d9802a9467dc81340d66ab8405ab20ca --- setup.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 207ab10..f10115d 100644 --- a/setup.py +++ b/setup.py @@ -14,12 +14,14 @@ with open('HISTORY.rst') as history_file: history = history_file.read() requirements = ['Click>=6.0', - 'zeep>=3.4.0', - 'pyOpenSSL>=19.1.0', - 'xmlsig>=0.1.3', - 'xades>=0.2.1', - 'mock==2.0.0', - 'xmlsec>=1.3.8', + 'zeep==4.0.0', + 'lxml==4.6.3', + 'cryptography==3.3.2', + 'pyOpenSSL==20.0.1', + 'xmlsig==0.1.7', + 'xades==0.2.2', + 'mock>=2.0.0', + 'xmlsec==1.3.12', 'xmlschema>=1.8'] setup_requirements = ['pytest-runner', ] @@ -62,6 +64,6 @@ setup( test_suite='tests', tests_require=test_requirements, url='https://github.com/bit4bit/facho', - version='0.1.2', + version='0.2.0', zip_safe=False, )