diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 73d916ed9..ad40abe9c 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200108.2 \ No newline at end of file +13.0.20200108.3 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 6263a03ed..ad4dafe73 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -15,6 +15,7 @@ setuptools.setup( 'odoo13-addon-stock_demand_estimate', 'odoo13-addon-stock_inventory_chatter', 'odoo13-addon-stock_inventory_lockdown', + 'odoo13-addon-stock_removal_location_by_priority', 'odoo13-addon-stock_warehouse_calendar', ], classifiers=[ diff --git a/setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority b/setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority new file mode 120000 index 000000000..c56450a33 --- /dev/null +++ b/setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority @@ -0,0 +1 @@ +../../../../stock_removal_location_by_priority \ No newline at end of file diff --git a/setup/stock_removal_location_by_priority/setup.py b/setup/stock_removal_location_by_priority/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_removal_location_by_priority/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)