mirror of
https://github.com/django/django.git
synced 2024-12-24 10:05:46 +00:00
c91cdbddcb
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8625 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
301 B
Python
10 lines
301 B
Python
VERSION = (1, 0, 'beta_2')
|
|
|
|
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
|