diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 377c43fa0..df44db882 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20191230.0 \ No newline at end of file +13.0.20200102.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index d6b574705..6ef67c63f 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ setuptools.setup( description="Meta package for oca-stock-logistics-warehouse Odoo addons", version=version, install_requires=[ + 'odoo13-addon-account_move_line_product', 'odoo13-addon-stock_available_unreserved', 'odoo13-addon-stock_inventory_lockdown', 'odoo13-addon-stock_warehouse_calendar', diff --git a/setup/account_move_line_product/odoo/addons/account_move_line_product b/setup/account_move_line_product/odoo/addons/account_move_line_product new file mode 120000 index 000000000..2e409822f --- /dev/null +++ b/setup/account_move_line_product/odoo/addons/account_move_line_product @@ -0,0 +1 @@ +../../../../account_move_line_product \ No newline at end of file diff --git a/setup/account_move_line_product/setup.py b/setup/account_move_line_product/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_move_line_product/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)