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 d7df790 commit 200c576Copy full SHA for 200c576
matplotlib_inline/__init__.py
@@ -1,2 +1,3 @@
1
from . import backend_inline, config # noqa
2
-__version__ = "0.1.7" # noqa
+version_info = (0, 1. 7)
3
+__version__ = '.'.join(str(s) for s in version_info) # noqa
0 commit comments