From 5ae7981939a06da411af50c88e6df85279839978 Mon Sep 17 00:00:00 2001 From: Stefan Rijnhart Date: Mon, 23 Jan 2023 13:14:44 +0100 Subject: [PATCH] [FIX] Pin cryptography to keep compatibility with Odoo's pyopenssl==19.0.0 Same as https://github.com/odoo/odoo/pull/99829 --- auto_backup/__manifest__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py index 35ad1b5c9..1ca292e8d 100644 --- a/auto_backup/__manifest__.py +++ b/auto_backup/__manifest__.py @@ -6,7 +6,7 @@ { "name": "Database Auto-Backup", "summary": "Backups database", - "version": "15.0.1.0.0", + "version": "15.0.1.0.1", "author": "Yenthe Van Ginneken, " "Agile Business Group, " "Grupo ESOC Ingenieria de Servicios, " @@ -24,5 +24,5 @@ "view/db_backup_view.xml", ], "installable": True, - "external_dependencies": {"python": ["pysftp"]}, + "external_dependencies": {"python": ["pysftp", "cryptography==2.6.1"]}, }