From febb0c38686db65c9223ba809b56bc36f40715d9 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 21 Oct 2023 12:56:24 +0200 Subject: [PATCH] [FIX] upgrade_analysis: Add to blacklist deprecated modules Odoo has deprecated such modules with a pre-hook raising an error, so they are not installable anymore. This way, we avoid them to be included in the Install Modules Wizard. --- upgrade_analysis/blacklist.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/upgrade_analysis/blacklist.py b/upgrade_analysis/blacklist.py index ea5007219..b280aac24 100644 --- a/upgrade_analysis/blacklist.py +++ b/upgrade_analysis/blacklist.py @@ -1,4 +1,9 @@ -BLACKLIST_MODULES = [] +BLACKLIST_MODULES = [ + "payment_alipay", + "payment_ogone", + "payment_payulatam", + "payment_payumoney", +] # the hw_* modules are not affected by a migration as they don't # contain any ORM functionality, but they do start up threads that