Fix Django versions in .travis.yml so they automatically bump minor versions

This commit is contained in:
Drew Hubl 2017-01-01 19:44:16 -07:00
parent 5eb16b7ee8
commit 3c9339bc48

View file

@ -7,48 +7,55 @@ python:
- "3.4" - "3.4"
- "3.5" - "3.5"
env: env:
- DJANGO=1.4.22 - DJANGO_VERSION='Django>=1.4,<1.5'
- DJANGO=1.5.12 - DJANGO_VERSION='Django>=1.5,<1.6'
- DJANGO=1.6.11 - DJANGO_VERSION='Django>=1.6,<1.7'
- DJANGO=1.7.11 - DJANGO_VERSION='Django>=1.7,<1.8'
- DJANGO=1.8.14 - DJANGO_VERSION='Django>=1.8,<1.9'
- DJANGO=1.9.9 - DJANGO_VERSION='Django>=1.9,<1.10'
- DJANGO=1.10.1 - DJANGO_VERSION='Django>=1.10,<1.11'
- DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
matrix: matrix:
exclude: exclude:
- python: "2.6" - python: "2.6"
env: DJANGO=1.7.11 env: DJANGO_VERSION='Django>=1.7,<1.8'
- python: "2.6" - python: "2.6"
env: DJANGO=1.8.14 env: DJANGO_VERSION='Django>=1.8,<1.9'
- python: "2.6" - python: "2.6"
env: DJANGO=1.9.9 env: DJANGO_VERSION='Django>=1.9,<1.10'
- python: "2.6" - python: "2.6"
env: DJANGO=1.10.1 env: DJANGO_VERSION='Django>=1.10,<1.11'
- python: "2.6"
env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
- python: "3.3" - python: "3.3"
env: DJANGO=1.4.22 env: DJANGO_VERSION='Django>=1.4,<1.5'
- python: "3.3"
env: DJANGO_VERSION='Django>=1.5,<1.6'
- python: "3.3"
env: DJANGO_VERSION='Django>=1.9,<1.10'
- python: "3.3"
env: DJANGO_VERSION='Django>=1.10,<1.11'
- python: "3.3"
env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
- python: "3.4" - python: "3.4"
env: DJANGO=1.4.22 env: DJANGO_VERSION='Django>=1.4,<1.5'
- python: "3.5"
env: DJANGO=1.4.22
- python: "3.3"
env: DJANGO=1.5.12
- python: "3.4" - python: "3.4"
env: DJANGO=1.5.12 env: DJANGO_VERSION='Django>=1.5,<1.6'
- python: "3.5"
env: DJANGO=1.5.12
- python: "3.4" - python: "3.4"
env: DJANGO=1.6.11 env: DJANGO_VERSION='Django>=1.6,<1.7'
- python: "3.5" - python: "3.5"
env: DJANGO=1.6.11 env: DJANGO_VERSION='Django>=1.4,<1.5'
- python: "3.5" - python: "3.5"
env: DJANGO=1.7.11 env: DJANGO_VERSION='Django>=1.5,<1.6'
- python: "3.3" - python: "3.5"
env: DJANGO=1.9.9 env: DJANGO_VERSION='Django>=1.6,<1.7'
- python: "3.3" - python: "3.5"
env: DJANGO=1.10.1 env: DJANGO_VERSION='Django>=1.7,<1.8'
allow_failures:
- env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
install: install:
- pip install -q Django==$DJANGO - pip install -q $DJANGO_VERSION
- pip install tox coveralls - pip install tox coveralls
script: script: