From cd16bee3c28ff1c7a46b99bb4b5676c8110e465d Mon Sep 17 00:00:00 2001 From: "Laurent Mignon (ACSONE)" Date: Wed, 20 Mar 2024 14:58:16 +0100 Subject: [PATCH] [FIX] shopinvader_product_stock_assortment: Avoid error in log This addon is not installable by depends on removed addons. Due to a change into odoo the dependencies are checked despite the addon is declared as not installable. see https://github.com/odoo/odoo/issues/141747 --- shopinvader_product_stock_assortment/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shopinvader_product_stock_assortment/__manifest__.py b/shopinvader_product_stock_assortment/__manifest__.py index 1748ce8a7d..a58a2febd3 100644 --- a/shopinvader_product_stock_assortment/__manifest__.py +++ b/shopinvader_product_stock_assortment/__manifest__.py @@ -11,6 +11,6 @@ "author": "ACSONE SA/NV", "license": "AGPL-3", "installable": False, - "depends": ["shopinvader_product_stock", "shopinvader_assortment"], + # "depends": ["shopinvader_product_stock", "shopinvader_assortment"], no more exists "auto_install": True, }