diff --git a/django/__init__.py b/django/__init__.py
index 7bb46b6..4430fec 100644
a
|
b
|
VERSION = (1, 8, 0, 'alpha', 0)
|
2 | 2 | |
3 | 3 | |
4 | 4 | def get_version(*args, **kwargs): |
5 | | # Don't litter django/__init__.py with all the get_version stuff. |
6 | | # Only import if it's actually called. |
| 5 | # Avoid circular import |
7 | 6 | from django.utils.version import get_version |
8 | 7 | return get_version(*args, **kwargs) |
9 | 8 | |
10 | 9 | |
| 10 | __version__ = get_version(VERSION) |
| 11 | |
| 12 | |
11 | 13 | def setup(): |
12 | 14 | """ |
13 | 15 | Configure the settings (this happens as a side effect of accessing the |