summaryrefslogtreecommitdiff
path: root/version.py
blob: 9e5ab4b77bed5722381dc0a299c79e4e07859344 (plain)
1
2
3
4
5
6
7
8
# 1.99.13
VERSION = (1, 99, 14)


def get_version():
    return u'.'.join((unicode(num) for num in VERSION))

__version__ = get_version()