summaryrefslogtreecommitdiff
path: root/ishtar_common/version.py
blob: 1949a549ed979c10c8d76a6441a5d3d463ace41c (plain)
1
2
3
4
5
6
7
8
9
# 4.3.8
VERSION = (4, 3, 8)


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


__version__ = get_version()