1
0
mirror of https://github.com/django/django.git synced 2025-01-11 02:46:13 +00:00
django/django/__init__.py
2013-10-31 08:42:28 -07:00

9 lines
270 B
Python

VERSION = (1, 7, 0, '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)