Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e896b1 commit 66f0aa5Copy full SHA for 66f0aa5
1 file changed
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