From 03c3cc6c747a819591eb3b62ac80d12a95d5bc06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Didderen?= Date: Fri, 7 Apr 2023 15:25:05 +0200 Subject: [PATCH] account_ebics - prevent cryptography into newest versions Check Cryptography 41.0 which drops the support for Python 3.6 --- account_ebics/__manifest__.py | 16 ++++++++-------- requirements.txt | 3 +++ 2 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 requirements.txt 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