Skip to content

Commit

Permalink
Merge branch 'master' into no_more_guardian
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Jun 5, 2017
2 parents fe61214 + eb63627 commit 0f2eb7d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION=1.8.16
- DJANGO_VERSION=1.9.11
- DJANGO_VERSION=1.10.4
- DJANGO_VERSION=1.10.5
- DJANGO_VERSION=1.11.2
install:
- pip install -q -rrequirements/base.txt
- pip install -q -rrequirements/tests.txt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Smartmin tries to stay in lock step with the latest Django versions. With each n
will be released and we will save the major changes (possibly breaking backwards compatibility) on these versions. This
includes updating to the latest version of Twitter Bootstrap.

The latest version is the 1.10.* series which works against Django 1.8, 1.9 and 1.10.
The latest version is the 1.11.* series which works against Django 1.9, 1.10 and 1.11.

About
=====
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
celery
django>=1.8,<2.0
django>=1.9,<2.0
django_compressor
pytz
redis
Expand Down
3 changes: 1 addition & 2 deletions smartmin/email.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import unicode_literals

from django.conf import settings
from django.template import Context
from django.utils.module_loading import import_string


Expand All @@ -13,7 +12,7 @@ def link_components(request, user=None):


def build_email_context(request=None, user=None):
context = Context({'user': user})
context = {'user': user}

processors = []
collect = []
Expand Down

0 comments on commit 0f2eb7d

Please sign in to comment.