diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 6fee149c1..3d45bff25 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180829.0 \ No newline at end of file +11.0.20180921.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index c616dcfd4..4daac01de 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo11-addon-account_balance_line', + 'odoo11-addon-account_chart_update', 'odoo11-addon-account_check_deposit', 'odoo11-addon-account_credit_control', 'odoo11-addon-account_credit_control_dunning_fees', diff --git a/setup/account_chart_update/odoo/addons/account_chart_update b/setup/account_chart_update/odoo/addons/account_chart_update new file mode 120000 index 000000000..68f868d9a --- /dev/null +++ b/setup/account_chart_update/odoo/addons/account_chart_update @@ -0,0 +1 @@ +../../../../account_chart_update \ No newline at end of file diff --git a/setup/account_chart_update/setup.cfg b/setup/account_chart_update/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/account_chart_update/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_chart_update/setup.py b/setup/account_chart_update/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_chart_update/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)