We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5aea6f5 + e014345 commit b3986baCopy full SHA for b3986ba
.travis.yml
@@ -9,6 +9,7 @@ env:
9
- DJANGO=1.6
10
- DJANGO=1.7
11
- DJANGO=1.8
12
+ - DJANGO=1.9
13
install:
14
- pip install -q Django==$DJANGO
15
script:
@@ -21,3 +22,6 @@ matrix:
21
22
23
- python: "2.6"
24
env: DJANGO=1.8
25
+
26
+ - python: "2.6"
27
+ env: DJANGO=1.9
tests/urls.py
@@ -1,7 +1,12 @@
1
+import sys
2
import uuid
3
4
from django.conf.urls import include
-from django.utils import unittest
5
6
+if sys.version_info >= (2, 7):
7
+ import unittest
8
+else:
+ from django.utils import unittest
from macrosurl import MacroUrlPattern, url
0 commit comments