diff --git a/account_ebics/__manifest__.py b/account_ebics/__manifest__.py index d26bba7..3f56e5d 100644 --- a/account_ebics/__manifest__.py +++ b/account_ebics/__manifest__.py @@ -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"], } diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..808e4cc --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# generated from manifests external_dependencies +cryptography<=39.0.2 +fintech