diff --git a/base_jsonify/__manifest__.py b/base_jsonify/__manifest__.py index e650d6c82..d93961ff2 100644 --- a/base_jsonify/__manifest__.py +++ b/base_jsonify/__manifest__.py @@ -1,7 +1,7 @@ # Copyright 2017-2018 Akretion (http://www.akretion.com) # Sébastien BEAU # Raphaël Reverdy -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). { "name": "Base Jsonify", @@ -10,7 +10,7 @@ "category": "Uncategorized", "website": "https://github.com/OCA/server-tools", "author": "Akretion, Odoo Community Association (OCA)", - "license": "AGPL-3", + "license": "LGPL-3", "installable": True, "depends": ["base"], "data": [ diff --git a/base_jsonify/models/ir_export.py b/base_jsonify/models/ir_export.py index 6b7606f01..665d767fb 100644 --- a/base_jsonify/models/ir_export.py +++ b/base_jsonify/models/ir_export.py @@ -1,6 +1,6 @@ # © 2017 Akretion (http://www.akretion.com) # Sébastien BEAU -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). from collections import OrderedDict diff --git a/base_jsonify/models/ir_exports_line.py b/base_jsonify/models/ir_exports_line.py index decd671a6..998bb5d3c 100644 --- a/base_jsonify/models/ir_exports_line.py +++ b/base_jsonify/models/ir_exports_line.py @@ -1,5 +1,5 @@ # Copyright 2017 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import _, api, fields, models from odoo.exceptions import ValidationError diff --git a/base_jsonify/models/ir_exports_resolver.py b/base_jsonify/models/ir_exports_resolver.py index f61bd235a..d1b13f0b7 100644 --- a/base_jsonify/models/ir_exports_resolver.py +++ b/base_jsonify/models/ir_exports_resolver.py @@ -1,5 +1,5 @@ # Copyright 2020 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import fields, models from odoo.tools.safe_eval import safe_eval diff --git a/base_jsonify/models/models.py b/base_jsonify/models/models.py index 15a4eb052..87c7049b2 100644 --- a/base_jsonify/models/models.py +++ b/base_jsonify/models/models.py @@ -3,7 +3,7 @@ # Raphaël Reverdy # Copyright 2020 Camptocamp SA (http://www.camptocamp.com) # Simone Orsi -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). import logging diff --git a/base_jsonify/tests/test_get_parser.py b/base_jsonify/tests/test_get_parser.py index 017630acc..1beae062f 100644 --- a/base_jsonify/tests/test_get_parser.py +++ b/base_jsonify/tests/test_get_parser.py @@ -1,5 +1,5 @@ # Copyright 2017 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import mock diff --git a/base_jsonify/tests/test_ir_exports_line.py b/base_jsonify/tests/test_ir_exports_line.py index 5ba52ee19..c1cfd3d0b 100644 --- a/base_jsonify/tests/test_ir_exports_line.py +++ b/base_jsonify/tests/test_ir_exports_line.py @@ -1,5 +1,5 @@ # Copyright 2017 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.exceptions import ValidationError from odoo.tests.common import SavepointCase