From ebebd84fd6f7159d829d2ec543c04e49ac67c30f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 28 May 2020 20:53:18 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_move_location_dest_constraint_base | 1 + setup/stock_move_location_dest_constraint_base/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_move_location_dest_constraint_base/odoo/addons/stock_move_location_dest_constraint_base create mode 100644 setup/stock_move_location_dest_constraint_base/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 1704f78f25a9..9aa545037718 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20200430.0 \ No newline at end of file +12.0.20200528.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 8c0979d7992e..7715e96385b1 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -38,6 +38,7 @@ 'odoo12-addon-stock_location_template', 'odoo12-addon-stock_location_zone', 'odoo12-addon-stock_move_location', + 'odoo12-addon-stock_move_location_dest_constraint_base', 'odoo12-addon-stock_mts_mto_rule', 'odoo12-addon-stock_orderpoint_generator', 'odoo12-addon-stock_orderpoint_manual_procurement', diff --git a/setup/stock_move_location_dest_constraint_base/odoo/addons/stock_move_location_dest_constraint_base b/setup/stock_move_location_dest_constraint_base/odoo/addons/stock_move_location_dest_constraint_base new file mode 120000 index 000000000000..6db9d57eca28 --- /dev/null +++ b/setup/stock_move_location_dest_constraint_base/odoo/addons/stock_move_location_dest_constraint_base @@ -0,0 +1 @@ +../../../../stock_move_location_dest_constraint_base \ No newline at end of file diff --git a/setup/stock_move_location_dest_constraint_base/setup.py b/setup/stock_move_location_dest_constraint_base/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/stock_move_location_dest_constraint_base/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)