Commit 5e272e0f authored by James Bennett's avatar James Bennett
Browse files

Update django.VERSION in 1.0.x branch per previous discussion

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9102 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent b17453bb
Loading
Loading
Loading
Loading
+15 −7
Original line number Diff line number Diff line
VERSION = (1, 0, 'post-release-SVN')
VERSION = (1, 0, 1, 'alpha', 0)

def get_version():
    "Returns the version as a human-format string."
    v = '.'.join([str(i) for i in VERSION[:-1]])
    if VERSION[-1]:
    version = '%s.%s' % (VERSION[0], VERSION[1])
    if VERSION[2]:
        version = '%s.%s' % (version, VERSION[2])
    if VERSION[3:] == ('alpha', 0):
        version = '%s pre-alpha' % version
    else:
        version = '%s %s' % (version, VERSION[3])
        if VERSION[3] != 'final':
            version = '%s %s' % (version, VERSION[4])
    from django.utils.version import get_svn_revision
        v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision())
    return v
    svn_rev = get_svn_revision()
    if svn_rev != u'SVN-unknown':
        version = "%s %s" % (version, svn_rev)
    return version