From 265da65eade21826430b0a52fed30de62993d544 Mon Sep 17 00:00:00 2001 From: Alex Seeholzer Date: Wed, 16 Dec 2015 10:48:18 +0100 Subject: [PATCH] Removed Python3.5 + Django 1.7.11 from travis build targets (non-supported combination) --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 09f33747..1f5b9ac0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,23 @@ language: python + python: - "2.7" - "3.4" - "3.5" + env: - DJANGO=1.7.11 - DJANGO=1.8.7 - DJANGO=1.9 + +matrix: + exclude: + - python: "3.5" # django 1.7 does not support python 3.5 + env: DJANGO=1.7.11 + install: - pip install argparse - pip install -q Django==$DJANGO - pip install -q -r requirements.txt -script: python quicktest.py helpdesk + +script: python quicktest.py helpdesk \ No newline at end of file