diff --git a/setup.py b/setup.py index 864a9c9..d5e6c76 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ setup( 'Framework :: Django :: 1.8', 'Framework :: Django :: 1.9', 'Framework :: Django :: 1.10', + 'Framework :: Django :: 1.11', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', diff --git a/tests/settings.py b/tests/settings.py index 67b60ae..5bc1682 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -32,7 +32,11 @@ TEMPLATES = [{ 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, - 'OPTIONS': {}, + 'OPTIONS': { + 'context_processors': [ + 'django.contrib.auth.context_processors.auth', + ] + }, },] DATABASES = { diff --git a/tox.ini b/tox.ini index 5d44ba4..8062161 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ [tox] envlist = - py27-{17,18,19,110}, - py34-{17,18,19,110}, - py35-{18,19,110}, - py36-{18,19,110}, + py27-{17,18,19,110,111}, + py34-{17,18,19,110,111}, + py35-{18,19,110,111}, + py36-{18,19,110,111}, [testenv] passenv = CI TRAVIS TRAVIS_* deps = @@ -11,6 +11,7 @@ deps = 18: Django >= 1.8, < 1.9 19: Django >= 1.9, < 1.10 110: Django >= 1.10, < 1.11 + 111: Django >= 1.11, < 1.12 coverage codecov commands =