Skip to content

Commit 0d67099

Browse files
committed
travis fix
1 parent 2a4f607 commit 0d67099

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.travis.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,26 @@ python:
55
- '3.3'
66
- '3.4'
77
env:
8-
- DJANGO="django>=1.5.0,<1.6.0 django-mptt<0.7.0"
9-
- DJANGO="django>=1.6.0,<1.7.0 django-mptt<0.8.0"
10-
- DJANGO="django>=1.7.0,<1.8.0 django-mptt<0.8.0
11-
- DJANGO="django>=1.8.0,<1.9.0"
12-
- DJANGO="django>=1.9.0,<1.10.0"
8+
- PACKAGES="django>=1.5.0,<1.6.0 django-mptt<0.7.0"
9+
- PACKAGES="django>=1.6.0,<1.7.0 django-mptt<0.8.0"
10+
- PACKAGES="django>=1.7.0,<1.8.0 django-mptt<0.8.0
11+
- PACKAGES="django>=1.8.0,<1.9.0"
12+
- PACKAGES="django>=1.9.0,<1.10.0"
1313
matrix:
1414
exclude:
1515
- python: '2.6'
16-
env: DJANGO="django>=1.7.0,<1.8.0 django-mptt<0.8.0"
16+
env: PACKAGES="django>=1.7.0,<1.8.0 django-mptt<0.8.0"
1717
- python: '2.6'
18-
env: DJANGO="django>=1.8.0,<1.9.0"
18+
env: PACKAGES="django>=1.8.0,<1.9.0"
1919
- python: '2.6'
20-
env: DJANGO="django>=1.9.0,<1.10.0"
20+
env: PACKAGES="django>=1.9.0,<1.10.0"
2121
- python: '3.3'
22-
env: DJANGO="django>=1.9.0,<1.10.0"
22+
env: PACKAGES="django>=1.9.0,<1.10.0"
2323
before_install:
2424
- pip install codecov
2525
install:
26-
- travis_retry pip install $DJANGO
26+
- pip install -U pip wheel
27+
- pip install $PACKAGES
2728
- pip install -e .
2829
script:
2930
- coverage run --source=polymorphic_tree runtests.py

0 commit comments

Comments
 (0)