Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12.0][CHG] datamodel: Use more permissive licence: AGPL-> LGPL #166

Merged
merged 2 commits into from
Jun 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions base_rest_datamodel/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 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.html)

{
"name": "Base Rest Datamodel",
"summary": """
Datamodel binding for base_rest""",
"version": "12.0.2.0.1",
"license": "AGPL-3",
"license": "LGPL-3",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/rest-framework",
"depends": ["base_rest", "datamodel"],
Expand Down
4 changes: 2 additions & 2 deletions datamodel/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Copyright 2019 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.html)

{
"name": "Datamodel",
"summary": """
This addon allows you to define simple data models supporting
serialization/deserialization""",
"version": "12.0.2.0.0",
"license": "AGPL-3",
"license": "LGPL-3",
"development_status": "Beta",
"author": "ACSONE SA/NV, " "Odoo Community Association (OCA)",
"maintainers": ["lmignon"],
Expand Down
2 changes: 1 addition & 1 deletion datamodel/builder.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright 2017 Camptocamp SA
# Copyright 2019 ACSONE SA/NV
# 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)

"""

Expand Down
2 changes: 1 addition & 1 deletion datamodel/core.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright 2017 Camptocamp SA
# Copyright 2019 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.html)

import functools
import logging
Expand Down
2 changes: 1 addition & 1 deletion datamodel/datamodels/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2019 ACSONE SA/NV
# 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 ..core import Datamodel

Expand Down
2 changes: 1 addition & 1 deletion datamodel/fields.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2019 ACSONE SA/NV
# 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)
"""

Fields
Expand Down
2 changes: 1 addition & 1 deletion datamodel/tests/common.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright 2017 Camptocamp SA
# Copyright 2019 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.html)

import copy
import unittest
Expand Down
2 changes: 1 addition & 1 deletion datamodel/tests/test_build_datamodel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright 2017 Camptocamp SA
# Copyright 2019 ACSONE SA/NV
# 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 mock
from marshmallow_objects.models import Model as MarshmallowModel
Expand Down