diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index ae50fae4..ccdc031c 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20200713.0 \ No newline at end of file +12.0.20201001.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 37aa6201..c312c05a 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -12,6 +12,7 @@ setuptools.setup( 'odoo12-addon-rma', 'odoo12-addon-rma_sale', 'odoo12-addon-stock_production_lot_warranty', + 'odoo12-addon-website_rma', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/website_rma/odoo/addons/website_rma b/setup/website_rma/odoo/addons/website_rma new file mode 120000 index 00000000..78dc64e5 --- /dev/null +++ b/setup/website_rma/odoo/addons/website_rma @@ -0,0 +1 @@ +../../../../website_rma \ No newline at end of file diff --git a/setup/website_rma/setup.py b/setup/website_rma/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/website_rma/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)