mirror of https://github.com/OCA/web.git
[FIX] Freeze and bump matplotlib
More recent versions of matplotlib depend on Pillow >= 6.2 which is incompatible with Odoo dependencies. We use python_version markers to support both Python 3.5 and 3.8 as there isn't any version that satisfies both.pull/1894/head
parent
583b4afe54
commit
80907425f1
|
@ -1,5 +1,6 @@
|
||||||
# web_widget_bokeh_chart
|
# web_widget_bokeh_chart
|
||||||
bokeh==1.1.0
|
bokeh==1.1.0
|
||||||
# web_widget_mpld3_chart
|
# web_widget_mpld3_chart
|
||||||
matplotlib>=2.0.0
|
matplotlib==3.0.3; python_version < '3.7'
|
||||||
|
matplotlib==3.4.1; python_version >= '3.7'
|
||||||
mpld3==0.3
|
mpld3==0.3
|
||||||
|
|
Loading…
Reference in New Issue