[11.0][MIG] base_external_dbsource_mysql: Migration to v11.0

This commit is contained in:
Sergio Teruel Albert
2018-06-27 13:00:28 +02:00
committed by sergio.teruel
parent eb075533e7
commit ae0ee83dfe
13 changed files with 34 additions and 98 deletions

View File

@@ -1,29 +1,26 @@
# -*- coding: utf-8 -*-
# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
'name': 'External Database Source - MySQL',
'version': '10.0.1.0.0',
'version': '11.0.1.0.0',
'category': 'Tools',
'author': "Daniel Reis, "
"LasLabs, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/server-tools',
'website': 'https://github.com/OCA/server-backend',
'license': 'LGPL-3',
'depends': [
'base_external_dbsource_sqlite',
],
# Uncomment this for v11
# 'external_dependencies': [
# 'python': [
# 'sqlalchemy',
# 'MySQLdb',
# ]
# ],
'external_dependencies': {
'python': [
'sqlalchemy',
'MySQLdb',
],
},
'demo': [
'demo/base_external_dbsource.xml',
],
'installable': True,
'auto_install': True, # Remove this key for v11
}