mirror of
https://github.com/Hopiu/django.git
synced 2026-04-09 01:21:06 +00:00
7 lines
269 B
Python
7 lines
269 B
Python
VERSION = (1, 6, 0, 'alpha', 1)
|
|
|
|
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)
|