2013-06-28 21:56:45 +08:00
|
|
|
VERSION = (1, 7, 0, 'alpha', 0)
|
2007-06-10 10:00:46 +08:00
|
|
|
|
2013-10-31 23:42:28 +08:00
|
|
|
|
2012-04-30 02:44:32 +08:00
|
|
|
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)
|
2013-12-30 22:42:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
def setup():
|
|
|
|
# Configure the settings (this happens as a side effect of accessing
|
|
|
|
# INSTALLED_APPS or any other setting) and populate the app registry.
|
|
|
|
from django.apps import apps
|
|
|
|
from django.conf import settings
|
|
|
|
apps.populate_apps(settings.INSTALLED_APPS)
|
|
|
|
apps.populate_models()
|