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] [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"], }