Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
11 changes: 5 additions & 6 deletions djangowind/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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):
"""
Expand Down
12 changes: 6 additions & 6 deletions test_reqs.txt
Original file line number Diff line number Diff line change
@@ -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