diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 8b522d4cb..5d1c2d875 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200123.0 \ No newline at end of file +13.0.20200127.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index e0491e2a9..eb88d9a71 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -17,6 +17,7 @@ setuptools.setup( 'odoo13-addon-stock_inventory_chatter', 'odoo13-addon-stock_inventory_exclude_sublocation', 'odoo13-addon-stock_inventory_lockdown', + 'odoo13-addon-stock_orderpoint_uom', 'odoo13-addon-stock_removal_location_by_priority', 'odoo13-addon-stock_warehouse_calendar', 'odoo13-addon-stock_warehouse_orderpoint_stock_info', diff --git a/setup/stock_orderpoint_uom/odoo/addons/stock_orderpoint_uom b/setup/stock_orderpoint_uom/odoo/addons/stock_orderpoint_uom new file mode 120000 index 000000000..ac328e164 --- /dev/null +++ b/setup/stock_orderpoint_uom/odoo/addons/stock_orderpoint_uom @@ -0,0 +1 @@ +../../../../stock_orderpoint_uom \ No newline at end of file diff --git a/setup/stock_orderpoint_uom/setup.py b/setup/stock_orderpoint_uom/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_orderpoint_uom/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)