From cbe9781fe64485362bf7d5115dfb2c360ea1edc5 Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Tue, 16 Feb 2016 13:17:58 +0100 Subject: [PATCH] Removed tests for Python 3.3 again since Django has dropped support starting with 1.8 --- .travis.yml | 2 +- tox.ini | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index ab64c03..600175c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: python python: 3.5 env: - TOXENV=py27 -- TOXENV=py33 +- TOXENV=py34 - TOXENV=py35 install: - pip install -U tox diff --git a/tox.ini b/tox.ini index 173e4fd..5bd907d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27,py33,py34,py35 +envlist = py27,py34,py35 [testenv] deps = @@ -13,16 +13,12 @@ deps = commands = py.test {posargs:tests} -[testenv:py33] -basepython = python3.3 +[testenv:py34] +basepython = python3.4 deps = -rrequirements-py3.txt pytest -[testenv:py34] -basepython = python3.4 -deps = {[testenv:py33]deps} - [testenv:py35] basepython = python3.5 -deps = {[testenv:py33]deps} +deps = {[testenv:py34]deps}