From b7f84e8bd711ebe2521d15ed2e96a27faf109038 Mon Sep 17 00:00:00 2001 From: Adrien Peiffer Date: Mon, 14 Nov 2022 11:29:16 +0100 Subject: [PATCH] [MIG] mail_environment: Migration to 16.0 --- mail_environment/__manifest__.py | 4 ++-- setup/mail_environment/odoo/addons/mail_environment | 1 + setup/mail_environment/setup.py | 6 ++++++ 3 files changed, 9 insertions(+), 2 deletions(-) create mode 120000 setup/mail_environment/odoo/addons/mail_environment create mode 100644 setup/mail_environment/setup.py diff --git a/mail_environment/__manifest__.py b/mail_environment/__manifest__.py index b72c008..02cec83 100644 --- a/mail_environment/__manifest__.py +++ b/mail_environment/__manifest__.py @@ -3,11 +3,11 @@ { "name": "Mail configuration with server_environment", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "category": "Tools", "summary": "Configure mail servers with server_environment_files", "author": "Camptocamp, Odoo Community Association (OCA)", "license": "AGPL-3", "website": "https://github.com/OCA/server-env", - "depends": ["fetchmail", "server_environment"], + "depends": ["mail", "server_environment"], } diff --git a/setup/mail_environment/odoo/addons/mail_environment b/setup/mail_environment/odoo/addons/mail_environment new file mode 120000 index 0000000..d9f9261 --- /dev/null +++ b/setup/mail_environment/odoo/addons/mail_environment @@ -0,0 +1 @@ +../../../../mail_environment \ No newline at end of file diff --git a/setup/mail_environment/setup.py b/setup/mail_environment/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/mail_environment/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)