Skip to content

Commit 200c576

Browse files
committed
Add a numeric field for version info.
1 parent d7df790 commit 200c576

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

matplotlib_inline/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
from . import backend_inline, config # noqa
2-
__version__ = "0.1.7" # noqa
2+
version_info = (0, 1. 7)
3+
__version__ = '.'.join(str(s) for s in version_info) # noqa

0 commit comments

Comments
 (0)