From 3f0cec2d4969f61241ad53b7de7c97d324e644aa Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Mon, 18 Sep 2017 17:30:01 -0500 Subject: [PATCH] Drop Python 3.3, add 3.6 --- .travis.yml | 24 +++++++++++++----------- tox.ini | 4 ++-- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index f208916..2f6c956 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,21 +2,23 @@ language: python python: 3.5 -env: - - TOXENV=py27 - - TOXENV=py33 - - TOXENV=py34 - - TOXENV=py35 +matrix: + include: + - python: 2.7 + env: TOXENV=py27 + - python: 3.4 + env: TOXENV=py34 + - python: 3.5 + env: TOXENV=py35 + - python: 3.6 + env: TOXENV=py36 + - script: bin/check_for_differences + env: + - SUITE=Source install: pip install tox script: tox -matrix: - include: - - script: bin/check_for_differences - env: - - SUITE=Source - notifications: email: false diff --git a/tox.ini b/tox.ini index 705c76f..9e9d792 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,12 @@ [tox] -envlist = py{27,33,34,35} +envlist = py{27,34,35,36} [testenv] basepython = py27: python2.7 - py33: python3.3 py34: python3.4 py35: python3.5 + py36: python3.6 deps = check-manifest readme_renderer