Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
4912 commits behind the upstream repository.
__init__.py 193 B
# -*- coding: utf-8 -*-
__version__ = "0.20.1"
__version_info__ = tuple(
    [
        int(num) if num.isdigit() else num
        for num in __version__.replace("-", ".", 1).split(".")
    ]
)