Skip to content

Commit 2b4ecb7

Browse files
committed
Exclude some Python/Django version combinations that cannot possibly work.
Django 1.9 doesn't support python 3.3. Similarly, Python 3.5 removes HTML parsing utils used by Django < 1.8.
1 parent bb5db38 commit 2b4ecb7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,18 @@ matrix:
1515
exclude:
1616
- python: "3.3"
1717
env: DJANGO_VERSION=1.4
18+
- python: "3.3"
19+
env: DJANGO_VERSION=1.9
1820
- python: "3.4"
1921
env: DJANGO_VERSION=1.4
2022
- python: "3.5"
2123
env: DJANGO_VERSION=1.4
24+
- python: "3.5"
25+
env: DJANGO_VERSION=1.5
26+
- python: "3.5"
27+
env: DJANGO_VERSION=1.6
28+
- python: "3.5"
29+
env: DJANGO_VERSION=1.7
2230
install:
2331
- pip install -r requirements.txt
2432
- pip install -q Django==$DJANGO_VERSION

0 commit comments

Comments
 (0)