summaryrefslogtreecommitdiff
path: root/ishtar_common/version.py
blob: f2ba023289c7293772b2dc23f8fdb9038898b253 (plain)
1
2
3
4
5
6
7
8
9
# 4.0.31
VERSION = (4, 0, 31)


def get_version():
    return ".".join((str(num) for num in VERSION))


__version__ = get_version()