Skip to content

Commit

Permalink
Add a numeric field for version info
Browse files Browse the repository at this point in the history
And setup auto publication
  • Loading branch information
Carreau committed Dec 10, 2024
1 parent d7df790 commit 5468b6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion matplotlib_inline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from . import backend_inline, config # noqa
__version__ = "0.1.7" # noqa

version_info = (0, 1, 7)
__version__ = '.'.join(str(s) for s in version_info) # noqa

0 comments on commit 5468b6c

Please sign in to comment.