[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.
pull/2826/head
Pedro M. Baeza 2023-10-21 12:56:24 +02:00 committed by Stefan Rijnhart
parent 9bf4d5fdfe
commit febb0c3868
1 changed files with 6 additions and 1 deletions

View File

@ -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 # the hw_* modules are not affected by a migration as they don't
# contain any ORM functionality, but they do start up threads that # contain any ORM functionality, but they do start up threads that