# HG changeset patch # User Vincent Hatakeyama <vincent.hatakeyama@xcg-consulting.fr> # Date 1706607432 -3600 # Tue Jan 30 10:37:12 2024 +0100 # Branch 16.0 # Node ID 62e83de41369a4be2de462109f37122c1649df43 # Parent 811fa78baa97e8ca34de3b43a755610c885c7681 🚑 loosen python version diff --git a/NEWS.rst b/NEWS.rst --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,11 @@ Changelog ========= +16.0.1.0.1 +---------- + +Loosen python version. + 16.0.1.0.0 ---------- diff --git a/__manifest__.py b/__manifest__.py --- a/__manifest__.py +++ b/__manifest__.py @@ -1,7 +1,7 @@ ############################################################################## # # Context Methods, for Odoo -# Copyright (C) 2021, 2022, 2023 XCG Consulting <https://xcg-consulting.fr> +# Copyright © 2021, 2022, 2023 XCG Consulting <https://xcg-consulting.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -21,7 +21,7 @@ "name": "Context Methods", "license": "AGPL-3", "summary": "Provide context method on models", - "version": "16.0.1.0.0", + "version": "16.0.1.0.1", "category": "Hidden", "author": "XCG Consulting", "website": "https://orbeet.io/", diff --git a/models/base.py b/models/base.py --- a/models/base.py +++ b/models/base.py @@ -1,7 +1,7 @@ ############################################################################## # # Context Methods, for Odoo -# Copyright (C) 2021, 2022, 2023 XCG Consulting <https://xcg-consulting.fr> +# Copyright © 2021, 2022, 2023 XCG Consulting <https://xcg-consulting.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/pyproject.toml b/pyproject.toml --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "odoo-addon-base_context" dynamic = ["version"] readme = "README.rst" -requires-python = "~=3.10.0" +requires-python = "~=3.10" license = { file = "LICENSE", name = "GNU Affero General Public License v3" } keywords = ["odoo"] authors = [{ name = "XCG Consulting" }] diff --git a/tests/test_with_lang.py b/tests/test_with_lang.py --- a/tests/test_with_lang.py +++ b/tests/test_with_lang.py @@ -1,7 +1,7 @@ ############################################################################## # # Context Methods, for Odoo -# Copyright (C) 2022 XCG Consulting <https://xcg-consulting.fr> +# Copyright © 2022 XCG Consulting <https://xcg-consulting.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as