3
0
Fork 0

web_widget_bokeh_chart: pin bokeh version

12.0
Stéphane Bidoul 2022-05-04 15:14:40 +02:00
parent f7a3092f29
commit 36471acd47
No known key found for this signature in database
GPG Key ID: BCAB2555446B5B92
2 changed files with 10 additions and 8 deletions

View File

@ -1,8 +1,4 @@
# web_widget_bokeh_chart # generated from manifests external_dependencies
bokeh==1.1.0 bokeh==1.1.0
# web_widget_plotly_chart mpld3
plotly==4.1.0 plotly
# web_widget_mpld3_chart
matplotlib==3.0.3; python_version < '3.7'
matplotlib==3.4.1; python_version >= '3.7'
mpld3==0.3

View File

@ -2,5 +2,11 @@ import setuptools
setuptools.setup( setuptools.setup(
setup_requires=['setuptools-odoo'], setup_requires=['setuptools-odoo'],
odoo_addon=True, odoo_addon={
"external_dependencies_override": {
"python": {
"bokeh": "bokeh==1.1.0",
},
}
}
) )