Don't waste Travis resources testing Django 1.5 on python 2.6

This commit is contained in:
medmunds
2012-12-05 11:17:21 -08:00
parent 38492e3ea4
commit cf56fd4a23

View File

@@ -9,10 +9,14 @@ env:
- DJANGO=https://github.com/django/django/tarball/stable/1.5.x
matrix:
exclude:
# Django < 1.5 not supported on python 3
- python: "3.2"
env: DJANGO=django==1.3
- python: "3.2"
env: DJANGO=django==1.4
# Django 1.5 strongly recommends python 2.7 or later (so skip 2.6)
- python: "2.6"
env: DJANGO=https://github.com/django/django/tarball/stable/1.5.x
install:
- pip install -q $DJANGO --use-mirrors
- pip install . --use-mirrors