Files
web/setup/web_widget_mpld3_chart/setup.py
Stéphane Bidoul 0de495bcb4 Preserve requirements.txt
Such kind of hard pins should be avoided, but I'll leave that to
maintainers of web_widget_mpld3.
2023-01-09 17:44:26 +01:00

17 lines
408 B
Python

import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon={
"external_dependencies_override": {
"python": {
"mpld3": [
"matplotlib==3.0.3; python_version < '3.7'",
"matplotlib==3.4.1; python_version >= '3.7'",
"mpld3==0.3",
],
},
},
},
)