From 903c5b9241159715a6295562db90a059ccbdcf81 Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Sun, 9 Jun 2019 10:58:17 +0200 Subject: [PATCH] Removed Python 3.4 from test matrix. --- .travis.yml | 13 ------------- tox.ini | 6 ++---- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3cd45c2d..03b2096b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,19 +4,6 @@ language: python matrix: include: - - python: 3.4 - dist: trusty - sudo: false - env: LINT="yes" - - python: 3.4 - dist: trusty - sudo: false - env: DJANGO="1.11" - - python: 3.4 - dist: trusty - sudo: false - env: DJANGO="2.0" - - python: 3.5 dist: trusty sudo: false diff --git a/tox.ini b/tox.ini index 15b2dae7..d5b60c22 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] # Ensure you add to .travis.yml if you add here, using `tox -l` -envlist = {py34,py35,py36,py37}-django{111,20,21},lint +envlist = {py35,py36,py37}-django{111,20,21},lint [travis] python = - 3.4: py34 3.5: py35 3.6: py36 3.7: py37 @@ -40,14 +39,13 @@ deps = django21: Django>=2.1,<2.2 basepython = - py34: python3.4 py35: python3.5 py36: python3.6 py37: python3.7 [testenv:lint] -basepython = python3.4 +basepython = python3 deps = .[testlint] commands = flake8 src/wiki -- 2.45.2