account_ebics - prevent cryptography into newest versions

Check Cryptography 41.0 which drops the support for Python 3.6
This commit is contained in:
Jérémy Didderen 2023-04-07 15:25:05 +02:00 committed by Luc De Meyer
parent b17de469b5
commit 03c3cc6c74
2 changed files with 11 additions and 8 deletions

View File

@ -21,13 +21,13 @@
'wizards/ebics_xfer.xml',
'views/menu.xml',
],
'installable': True,
'application': True,
'external_dependencies': {
'python': [
'fintech',
'cryptography',
]
},
"installable": True,
"application": True,
"external_dependencies": {
"python": [
"fintech",
"cryptography<=39.0.2",
]
},
"images": ["static/description/cover.png"],
}

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
# generated from manifests external_dependencies
cryptography<=39.0.2
fintech