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

:ambulance: fix pylint on odoo 11 with python 3.8

parent 2a42e6728b22
No related branches found
No related tags found
1 merge request!125🚑 fix pylint on odoo 11 with python 3.8
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
Fix issue with volume being created at each docker_dev_start run. Fix issue with volume being created at each docker_dev_start run.
Make docker_pylint work on Odoo 11 projects that uses python3.8.
16.6.0 16.6.0
------ ------
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
if odoo_type == ODOO_10: if odoo_type == ODOO_10:
pythons = ("python2.7",) pythons = ("python2.7",)
elif odoo_type == ODOO_11: elif odoo_type == ODOO_11:
pythons = ("python3.5", "python3.6") pythons = ("python3.5", "python3.6", "python3.8")
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:
......
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