diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 0f9b254ca888..767ec043b60f 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20191217.0 \ No newline at end of file +13.0.20191223.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 6e986c937c71..52b6c0110f47 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ description="Meta package for oca-stock-logistics-warehouse Odoo addons", version=version, install_requires=[ + 'odoo13-addon-stock_inventory_lockdown', 'odoo13-addon-stock_warehouse_calendar', ], classifiers=[ diff --git a/setup/stock_inventory_lockdown/odoo/addons/stock_inventory_lockdown b/setup/stock_inventory_lockdown/odoo/addons/stock_inventory_lockdown new file mode 120000 index 000000000000..98ace7ae067f --- /dev/null +++ b/setup/stock_inventory_lockdown/odoo/addons/stock_inventory_lockdown @@ -0,0 +1 @@ +../../../../stock_inventory_lockdown \ No newline at end of file diff --git a/setup/stock_inventory_lockdown/setup.py b/setup/stock_inventory_lockdown/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/stock_inventory_lockdown/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)