Add __version_info__ derived from __version__

This might be tuple of more than two values (major and minor
version) if commits have been made after a release.
This commit is contained in:
Robert Gieseke 2018-05-22 19:18:00 +02:00 committed by Simon Willison
commit fc47dacbbd
2 changed files with 1 additions and 3 deletions

View file

@ -1,2 +0,0 @@
__version_info__ = (0, 22)
__version__ = '.'.join(map(str, __version_info__))