From a84aaac34f9907f5262d7724ecf1131fe0197e7e Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Tue, 21 Aug 2018 14:29:25 -0500 Subject: [PATCH] tox: update Python versions Python 3.3 has not had support for a while and other branches are failing due to attempting to test on it. Python 3.4 is shipped in EPEL for CentOS 7 so there's some value in starting with that as a valid version. --- .travis.yml | 8 +++++--- tox.ini | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f080d61..19aafa1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,15 +7,17 @@ matrix: env: TOXENV=py26 - python: "2.7" env: TOXENV=py27 - - python: "3.3" - env: TOXENV=py33 - python: "3.4" env: TOXENV=py34 + - python: "3.5" + env: TOXENV=py35 + - python: "3.6" + env: TOXENV=py36 - python: "pypy" env: TOXENV=pypy - python: 2.7 env: TOXENV=pep8 - - python: 3.3 + - python: 3.6 env: TOXENV=py3pep8 before_install: pip install codecov diff --git a/tox.ini b/tox.ini index 9007e49..056d85b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {pypy,pep8,py3pep8,py26,py27,py33,py34} +envlist = {pypy,pep8,py3pep8,py26,py27,py34,py35,py36} [testenv] deps = @@ -20,7 +20,7 @@ commands = flake8 . [testenv:py3pep8] -basepython = python3.3 +basepython = python3.6 deps = flake8 flake8-import-order