Package: django-stronghold / 0.2.7+debian-3

Metadata

Package Version Patches format
django-stronghold 0.2.7+debian-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
001 django 1.9.patch | (download)

stronghold/tests/testdecorators.py | 3 1 + 2 - 0 !
stronghold/tests/testutils.py | 4 2 + 2 - 0 !
2 files changed, 3 insertions(+), 4 deletions(-)

 add django 1.9 support
 In Django 1.9, django.utils.unittest is depcreated in favor of
 regular unittest.
002 django 1.10.patch | (download)

stronghold/tests/testmiddleware.py | 17 13 + 4 - 0 !
test_project/test_project/urls.py | 7 3 + 4 - 0 !
2 files changed, 16 insertions(+), 8 deletions(-)

 add django 1.10 support
 In Django 1.10, urlpatterns must be a simple array.
 .
 In Django 1.10, the user.is_authenticated can act as a method or a
 property.  Django depricated its use as a method and will be removed
 in Django 2.0.  Django has internally changed its code to use it as a
 property.  This patch updates the mock setup of is_authenticated to
 work like a property or a method.