blob: 5aca8e2b425f2083b0c2c48e6572cf7c4eac9fc3 (
plain)
1
2
3
4
5
6
7
8
9
|
VERSION = (1, 0, 'post-release-SVN')
def get_version():
"Returns the version as a human-format string."
v = '.'.join([str(i) for i in VERSION[:-1]])
if VERSION[-1]:
from django.utils.version import get_svn_revision
v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision())
return v
|