Skip to content

Commit 44775ba

Browse files
committed
revsplit
1 parent 0d2dcc4 commit 44775ba

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

matplotlib_inline/__init__.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
from . import backend_inline, config # noqa
22

3-
version_info = (0, 1, 7)
4-
__version__ = '.'.join(str(s) for s in version_info) # noqa
3+
__version__ = "0.1.7"
4+
5+
# we can't ''.join(...) otherwise finding the version number at build time requires
6+
# import which introduces IPython and matplotlib at build time, and thus circular
7+
# dependencies.
8+
version_info = tuple(int(s) for s in __version__.split(".")[:3])

0 commit comments

Comments
 (0)