Files
zenml/venv/lib/python3.9/site-packages/matplotlib_inline/__init__.py
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

9 lines
316 B
Python

from . import backend_inline, config # noqa
__version__ = "0.2.1"
# we can't ''.join(...) otherwise finding the version number at build time requires
# import which introduces IPython and matplotlib at build time, and thus circular
# dependencies.
version_info = tuple(int(s) for s in __version__.split(".")[:3])