diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index ff7a12021a..0007a5af10 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191231.0 \ No newline at end of file +12.0.20200114.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index d9b9a92688..62a506caa1 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ version=version, install_requires=[ 'odoo12-addon-account_operating_unit', + 'odoo12-addon-agreement_operating_unit', 'odoo12-addon-analytic_operating_unit', 'odoo12-addon-crm_operating_unit', 'odoo12-addon-fieldservice_operating_unit', diff --git a/setup/agreement_operating_unit/odoo/addons/agreement_operating_unit b/setup/agreement_operating_unit/odoo/addons/agreement_operating_unit new file mode 120000 index 0000000000..50a00fc7b1 --- /dev/null +++ b/setup/agreement_operating_unit/odoo/addons/agreement_operating_unit @@ -0,0 +1 @@ +../../../../agreement_operating_unit \ No newline at end of file diff --git a/setup/agreement_operating_unit/setup.py b/setup/agreement_operating_unit/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/agreement_operating_unit/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)