__init__.py 316 B

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