Skip to content
Snippets Groups Projects
__init__.py 193 B
Newer Older
__version__ = "0.18.1"
Eliot Berriot's avatar
Eliot Berriot committed
__version_info__ = tuple(
    [
        int(num) if num.isdigit() else num
        for num in __version__.replace("-", ".", 1).split(".")
    ]
)