diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index c4f1e664..c831588f 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20190522.0 \ No newline at end of file +12.0.20190523.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 76ff96c7..b6c9352e 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo12-addon-web_advanced_search', + 'odoo12-addon-web_company_color', 'odoo12-addon-web_decimal_numpad_dot', 'odoo12-addon-web_dialog_size', 'odoo12-addon-web_disable_export_group', diff --git a/setup/web_company_color/odoo/addons/web_company_color b/setup/web_company_color/odoo/addons/web_company_color new file mode 120000 index 00000000..ba46d5db --- /dev/null +++ b/setup/web_company_color/odoo/addons/web_company_color @@ -0,0 +1 @@ +../../../../web_company_color \ No newline at end of file diff --git a/setup/web_company_color/setup.py b/setup/web_company_color/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_company_color/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)