Skip to content

Commit

Permalink
revsplit
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Dec 10, 2024
1 parent 0d2dcc4 commit 44775ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions matplotlib_inline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from . import backend_inline, config # noqa

version_info = (0, 1, 7)
__version__ = '.'.join(str(s) for s in version_info) # noqa
__version__ = "0.1.7"

# 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])

0 comments on commit 44775ba

Please sign in to comment.