We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d2dcc4 commit 44775baCopy full SHA for 44775ba
matplotlib_inline/__init__.py
@@ -1,4 +1,8 @@
1
from . import backend_inline, config # noqa
2
3
-version_info = (0, 1, 7)
4
-__version__ = '.'.join(str(s) for s in version_info) # noqa
+__version__ = "0.1.7"
+
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