diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 662a584da7..79afc5bacd 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191108.0 \ No newline at end of file +12.0.20191125.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 26c3bb1651..09b275c161 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -13,6 +13,7 @@ 'odoo12-addon-hr_contract_operating_unit', 'odoo12-addon-hr_expense_operating_unit', 'odoo12-addon-hr_payroll_account_operating_unit', + 'odoo12-addon-mrp_operating_unit', 'odoo12-addon-operating_unit', 'odoo12-addon-purchase_operating_unit', 'odoo12-addon-sales_team_operating_unit', diff --git a/setup/mrp_operating_unit/odoo/addons/mrp_operating_unit b/setup/mrp_operating_unit/odoo/addons/mrp_operating_unit new file mode 120000 index 0000000000..1f45ddfb5b --- /dev/null +++ b/setup/mrp_operating_unit/odoo/addons/mrp_operating_unit @@ -0,0 +1 @@ +../../../../mrp_operating_unit \ No newline at end of file diff --git a/setup/mrp_operating_unit/setup.py b/setup/mrp_operating_unit/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/mrp_operating_unit/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)