Skip to content

Commit

Permalink
Support Django 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hedleyroos committed Jan 4, 2016
1 parent 3d8089d commit 41401c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,10 @@
Changelog
=========

next
----
#. Support Django 1.9.

0.2 (2015-10-30)
----------------
#. Django 1.8 support (lamby).
Expand Down
5 changes: 4 additions & 1 deletion setuptest/setuptest.py
Expand Up @@ -147,7 +147,10 @@ def configure(self):

import django
from django.conf import settings
from django.utils.importlib import import_module
try:
from django.utils.importlib import import_module
except ImportError:
from importlib import import_module
try:
test_settings = import_module('test_settings')
except ImportError as e:
Expand Down

0 comments on commit 41401c3

Please sign in to comment.