diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 5d1c2d875..5e9dc0b94 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200127.0 \ No newline at end of file +13.0.20200127.1 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index eb88d9a71..75514822a 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_move_location', 'odoo13-addon-stock_orderpoint_uom', 'odoo13-addon-stock_removal_location_by_priority', 'odoo13-addon-stock_warehouse_calendar', diff --git a/setup/stock_move_location/odoo/addons/stock_move_location b/setup/stock_move_location/odoo/addons/stock_move_location new file mode 120000 index 000000000..c0bc16074 --- /dev/null +++ b/setup/stock_move_location/odoo/addons/stock_move_location @@ -0,0 +1 @@ +../../../../stock_move_location \ No newline at end of file diff --git a/setup/stock_move_location/setup.py b/setup/stock_move_location/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_move_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)