mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Such kind of hard pins should be avoided, but I'll leave that to maintainers of web_widget_mpld3.
17 lines
408 B
Python
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",
|
|
],
|
|
},
|
|
},
|
|
},
|
|
)
|