Travis: Add Python 3.5 and Django 1.9
parent
4da67a0fb6
commit
1d0302e4a1
24
.travis.yml
24
.travis.yml
|
|
@ -5,25 +5,49 @@ python:
|
||||||
- "3.2"
|
- "3.2"
|
||||||
- "3.3"
|
- "3.3"
|
||||||
- "3.4"
|
- "3.4"
|
||||||
|
- "3.5"
|
||||||
env:
|
env:
|
||||||
- DJANGO=">=1.4,<1.5"
|
- DJANGO=">=1.4,<1.5"
|
||||||
- DJANGO=">=1.5,<1.6"
|
- DJANGO=">=1.5,<1.6"
|
||||||
- DJANGO=">=1.6,<1.7"
|
- DJANGO=">=1.6,<1.7"
|
||||||
- DJANGO=">=1.7,<1.8"
|
- DJANGO=">=1.7,<1.8"
|
||||||
- DJANGO=">=1.8,<1.9"
|
- DJANGO=">=1.8,<1.9"
|
||||||
|
- DJANGO=">=1.9a1,<1.10"
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
exclude:
|
exclude:
|
||||||
|
- python: "3.5"
|
||||||
|
env: DJANGO=">=1.4,<1.5"
|
||||||
|
- python: "3.5"
|
||||||
|
env: DJANGO=">=1.5,<1.6"
|
||||||
|
- python: "3.5"
|
||||||
|
env: DJANGO=">=1.6,<1.7"
|
||||||
|
- python: "3.5"
|
||||||
|
env: DJANGO=">=1.7,<1.8"
|
||||||
|
- python: "3.5"
|
||||||
|
env: DJANGO=">=1.8,<1.9"
|
||||||
|
|
||||||
- python: "3.4"
|
- python: "3.4"
|
||||||
env: DJANGO=">=1.4,<1.5"
|
env: DJANGO=">=1.4,<1.5"
|
||||||
|
- python: "3.4"
|
||||||
|
env: DJANGO=">=1.9a1,<1.10"
|
||||||
|
|
||||||
- python: "3.3"
|
- python: "3.3"
|
||||||
env: DJANGO=">=1.4,<1.5"
|
env: DJANGO=">=1.4,<1.5"
|
||||||
|
- python: "3.3"
|
||||||
|
env: DJANGO=">=1.9a1,<1.10"
|
||||||
|
|
||||||
- python: "3.2"
|
- python: "3.2"
|
||||||
env: DJANGO=">=1.4,<1.5"
|
env: DJANGO=">=1.4,<1.5"
|
||||||
|
- python: "3.2"
|
||||||
|
env: DJANGO=">=1.9a1,<1.10"
|
||||||
|
|
||||||
- python: "2.6"
|
- python: "2.6"
|
||||||
env: DJANGO=">=1.7,<1.8"
|
env: DJANGO=">=1.7,<1.8"
|
||||||
- python: "2.6"
|
- python: "2.6"
|
||||||
env: DJANGO=">=1.8,<1.9"
|
env: DJANGO=">=1.8,<1.9"
|
||||||
|
- python: "2.6"
|
||||||
|
env: DJANGO=">=1.9a1,<1.10"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install django$DJANGO coverage==3.6
|
- pip install django$DJANGO coverage==3.6
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue