summaryrefslogtreecommitdiff
path: root/version.py
blob: 0817b604ddb26d7ccf9f78725cbc39a490a86b39 (plain)
1
2
3
4
5
6
7
8
# 2.1.dev.34
VERSION = (2, 1, 'dev', 34)


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

__version__ = get_version()