summaryrefslogtreecommitdiff
path: root/version.py
blob: b0e4fa8890962f9e59caee20c81b0d7c3289ea8e (plain)
1
2
3
4
5
6
7
8
# 2.1.0-dev
VERSION = (2, 1, 'dev', 0)


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

__version__ = get_version()