Merge pull request #85 from Noviat/13-cryptography_update

account_ebics - prevent cryptography into newest versions
This commit is contained in:
Luc De Meyer 2023-04-08 17:16:07 +02:00 committed by GitHub
commit bb106eccf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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