[MIG] base_external_dbsource_sqlite: migration to 16.0

This commit is contained in:
Andrea Cattalani
2023-04-06 13:37:42 +02:00
parent 8787c139a4
commit cc92649921
5 changed files with 12 additions and 2 deletions

View File

@@ -3,9 +3,10 @@
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "External Database Source - SQLite",
"version": "15.0.1.0.0",
"version": "16.0.1.0.0",
"category": "Tools",
"author": "Daniel Reis, LasLabs, Odoo Community Association (OCA)",
"maintainers": ["anddago78"],
"website": "https://github.com/OCA/server-backend",
"license": "LGPL-3",
"depends": ["base_external_dbsource"],

View File

@@ -1,6 +1,6 @@
# Copyright 2016 LasLabs Inc.
import mock
from unittest import mock
from odoo.tests import common

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
# generated from manifests external_dependencies
sqlalchemy

View File

@@ -0,0 +1 @@
../../../../base_external_dbsource_sqlite

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)