From fd5b8e529937ce43f52cc513b2f399b69d2f0aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 20 Apr 2023 03:00:03 +0000 Subject: [PATCH 1/3] [FIX] html_text: remove `lxml` from python depends Such dependency is already included in Odoo requirements using a pinned version [1]. Adding here could cause to upgrade the library to an incompatible version. [1] https://github.com/odoo/odoo/blob/54e58b3e47ee/requirements.txt#L23 --- html_text/__manifest__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/html_text/__manifest__.py b/html_text/__manifest__.py index 746e99635..f2ada4363 100644 --- a/html_text/__manifest__.py +++ b/html_text/__manifest__.py @@ -14,6 +14,5 @@ "license": "AGPL-3", "application": False, "installable": True, - "external_dependencies": {"python": ["lxml"]}, "depends": ["base"], } From 7af5f521fbc7ceb852e42cc3f71e86367b74ddbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 20 Apr 2023 03:01:00 +0000 Subject: [PATCH 2/3] [FIX] html_image_url_extractor: remove `lxml` from python depends Such dependency is already included in Odoo requirements using a pinned version [1]. Adding here could cause to upgrade the library to an incompatible version. [1] https://github.com/odoo/odoo/blob/54e58b3e47ee/requirements.txt#L23 --- html_image_url_extractor/__manifest__.py | 1 - requirements.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/html_image_url_extractor/__manifest__.py b/html_image_url_extractor/__manifest__.py index a0aa45623..a857148b7 100644 --- a/html_image_url_extractor/__manifest__.py +++ b/html_image_url_extractor/__manifest__.py @@ -12,6 +12,5 @@ "license": "AGPL-3", "application": False, "installable": True, - "external_dependencies": {"python": ["lxml"]}, "depends": ["base"], } diff --git a/requirements.txt b/requirements.txt index 039c3011d..3265c19ca 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,6 @@ cryptography==2.6.1 dataclasses dnspython josepy -lxml mako odoorpc openpyxl From b1cc4ce906bbbe378cbc6c44dac123cc01a9e615 Mon Sep 17 00:00:00 2001 From: Emilio Serna Date: Tue, 6 Jun 2023 19:49:03 +0000 Subject: [PATCH 3/3] [FIX] letsencrypt: remove `cryptography` from python depends Such dependency is already included in Odoo requirements using a pinned version [1]. Adding here could cause to upgrade the library to an incompatible version. [1] https://github.com/odoo/odoo/blob/710a2b2a7af68e8f2f249ef9fc3146f44d3266a5/requirements.txt#L3 --- letsencrypt/__manifest__.py | 4 +--- requirements.txt | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/letsencrypt/__manifest__.py b/letsencrypt/__manifest__.py index 69e6d0f73..25173b794 100644 --- a/letsencrypt/__manifest__.py +++ b/letsencrypt/__manifest__.py @@ -17,7 +17,5 @@ "demo": ["demo/ir_cron.xml"], "post_init_hook": "post_init_hook", "installable": True, - "external_dependencies": { - "python": ["acme<2.0.0", "cryptography", "dnspython", "josepy"] - }, + "external_dependencies": {"python": ["acme<2.0.0", "dnspython", "josepy"]}, } diff --git a/requirements.txt b/requirements.txt index 3265c19ca..dd70bcba9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ # generated from manifests external_dependencies acme<2.0.0 astor -cryptography cryptography==2.6.1 dataclasses dnspython