summaryrefslogtreecommitdiff
path: root/django/__init__.py
blob: c820eef6ea45d6306ff6093f4b1a913b22b00095 (plain)
1
2
3
4
5
6
7
VERSION = (1, 5, 8, 'alpha', 0)

def get_version(*args, **kwargs):
    # Don't litter django/__init__.py with all the get_version stuff.
    # Only import if it's actually called.
    from django.utils.version import get_version
    return get_version(*args, **kwargs)