# HG changeset patch # User Vincent Hatakeyama <vincent.hatakeyama@xcg-consulting.fr> # Date 1668091733 -3600 # Thu Nov 10 15:48:53 2022 +0100 # Node ID 7b91ef3af463f3fda6f240e00b504b3113ad5854 # Parent 59ed63d3dfd498a5cbcbe9bd92fa91368e83a9d1 🚑 docker_pylint: odoo 15 uses python 3.10 diff --git a/NEWS.rst b/NEWS.rst --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,11 @@ History ======= +16.9.1 +------ + +docker_pylint: fix the command in odoo 15 projects. + 16.9.0 ------ diff --git a/odoo_scripts/docker_pylint.py b/odoo_scripts/docker_pylint.py --- a/odoo_scripts/docker_pylint.py +++ b/odoo_scripts/docker_pylint.py @@ -95,7 +95,10 @@ elif odoo_type == ODOO_13: pythons = ("python3.8",) elif odoo_type == ODOO_15: - pythons = ("python3.9",) + pythons = ( + "python3.9", + "python3.10", + ) for python in pythons: result = modules_mount( config.modules,