-
-
Notifications
You must be signed in to change notification settings - Fork 768
Open
Labels
Description
I am working to automate migration with OpenUpgrade.
By example with Odoo 17, the information about deleting modules is only accessible into file :
https://github.com/OCA/OpenUpgrade/blob/17.0/docsource/modules160-170.rst
But this information is not into Python file like apriori.py :
https://github.com/OCA/OpenUpgrade/blob/17.0/openupgrade_scripts/apriori.py
Like :
# only used here for upgrade_analysis
deleted_modules = [
# odoo
"l10n_ae_pos",
"l10n_it_edi_pa",
"l10n_lu_peppol_id",
"l10n_pl_jpk",
"website_payment_paypal"
]
This can be useful to ignore missing module. OpenUpgrade work correctly.
What do you think?