diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 14f61c78..480e0d84 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20190501.0 \ No newline at end of file +12.0.20200622.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 2423d8f0..74be0e29 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo12-addon-product_warranty', + 'odoo12-addon-rma', 'odoo12-addon-stock_production_lot_warranty', ], classifiers=[ diff --git a/setup/rma/odoo/addons/rma b/setup/rma/odoo/addons/rma new file mode 120000 index 00000000..8475ad50 --- /dev/null +++ b/setup/rma/odoo/addons/rma @@ -0,0 +1 @@ +../../../../rma \ No newline at end of file diff --git a/setup/rma/setup.py b/setup/rma/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/rma/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)