From dacdc115409e8969e811469c348e85c84d7e65df 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 | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/account_ebics/__manifest__.py b/account_ebics/__manifest__.py index f5e5eaf..7feafa7 100644 --- a/account_ebics/__manifest__.py +++ b/account_ebics/__manifest__.py @@ -26,7 +26,7 @@ "external_dependencies": { "python": [ "fintech", - "cryptography", + "cryptography<=39.0.2", ] }, "images": ["static/description/cover.png"], diff --git a/requirements.txt b/requirements.txt index 6c420f9..808e4cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ # generated from manifests external_dependencies -cryptography +cryptography<=39.0.2 fintech