diff --git a/.travis.yml b/.travis.yml index 6862435..af57d95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: env: - DJANGO="Django>=1.8.0,<1.9.0" - DJANGO="Django>=1.9.0,<1.10.0" + - DJANGO="Django>=1.10,<1.11.0" # command to install dependencies install: diff --git a/djangowind/auth.py b/djangowind/auth.py index 8ca05e9..1dd1321 100644 --- a/djangowind/auth.py +++ b/djangowind/auth.py @@ -2,6 +2,11 @@ from django.conf import settings from django.contrib.auth.models import User, Group +from django.core.exceptions import ImproperlyConfigured +from warnings import warn +from django_statsd.clients import statsd +from xml.dom.minidom import parseString +from xml.etree import ElementTree try: from urllib.request import Request @@ -33,12 +38,6 @@ except ImportError: pass -from django.core.exceptions import ImproperlyConfigured -from warnings import warn -from django_statsd.clients import statsd -from xml.dom.minidom import parseString -from xml.etree import ElementTree - def validate_wind_ticket(ticketid): """ diff --git a/test_reqs.txt b/test_reqs.txt index 1aa6a92..5c83585 100644 --- a/test_reqs.txt +++ b/test_reqs.txt @@ -1,9 +1,9 @@ -coverage==4.0.3 +coverage==4.2 mock==2.0.0 -flake8==2.5.4 -django-jenkins==0.18.1 -pep8==1.5.7 -pyflakes==1.1.0 +flake8==3.0.2 +django-jenkins==0.19.0 +pep8==1.7.0 +pyflakes==1.2.3 statsd==3.2.1 django-statsd-mozilla==0.3.16 -ipdb==0.9.3 +ipdb==0.10.1