Skip to content
Snippets Groups Projects
Commit 7b91ef3af463 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: docker_pylint: odoo 15 uses python 3.10

parent 59ed63d3dfd4
No related branches found
No related tags found
1 merge request!142🚑 docker_pylint: odoo 15 uses python 3.10
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
History History
======= =======
16.9.1
------
docker_pylint: fix the command in odoo 15 projects.
16.9.0 16.9.0
------ ------
......
...@@ -95,7 +95,10 @@ ...@@ -95,7 +95,10 @@
elif odoo_type == ODOO_13: elif odoo_type == ODOO_13:
pythons = ("python3.8",) pythons = ("python3.8",)
elif odoo_type == ODOO_15: elif odoo_type == ODOO_15:
pythons = ("python3.9",) pythons = (
"python3.9",
"python3.10",
)
for python in pythons: for python in pythons:
result = modules_mount( result = modules_mount(
config.modules, config.modules,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment