From f88294a9e64740b504113897a3932229c8db3e05 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 27 May 2017 15:52:33 -1000 Subject: [PATCH] Drop a couple old versions of python According to the devguide: https://docs.python.org/devguide/ Python 3.3 is officially supported until 2017-09-29 and 3.4 until 2019-03-16 But I'm tired of waiting for my tests to run on Travis :-P --- .travis.yml | 8 -------- tox.ini | 14 +++++++------- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0708c24..5453d70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,10 +32,6 @@ matrix: exclude: - env: TOX_SUFFIX="flakes" python: 2.6 - - env: TOX_SUFFIX="boto" - python: 3.3 - - env: TOX_SUFFIX="boto" - python: 3.4 - env: TOX_SUFFIX="boto" python: 3.6 - env: TOX_SUFFIX="requests1" @@ -48,8 +44,6 @@ matrix: python: 2.6 - env: TOX_SUFFIX="aiohttp" python: 2.7 - - env: TOX_SUFFIX="aiohttp" - python: 3.3 - env: TOX_SUFFIX="aiohttp" python: pypy - env: TOX_SUFFIX="aiohttp" @@ -57,8 +51,6 @@ matrix: python: - 2.6 - 2.7 -- 3.3 -- 3.4 - 3.5 - 3.6 - pypy diff --git a/tox.ini b/tox.ini index 20afac6..979c378 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py26,py27,py33,py34,py35,py36,pypy,pypy3}-{flakes,requests216,requests213,requests27,requests26,requests25,requests24,requests23,requests22,requests1,httplib2,urllib319,urllib3110,urllib3121,tornado3,tornado4,boto,boto3,aiohttp} +envlist = {py26,py27,py35,py36,pypy,pypy3}-{flakes,requests216,requests213,requests27,requests26,requests25,requests24,requests23,requests22,requests1,httplib2,urllib319,urllib3110,urllib3121,tornado3,tornado4,boto,boto3,aiohttp} [testenv:flakes] skipsdist = True @@ -32,12 +32,12 @@ deps = urllib319: urllib3==1.9.1 urllib3110: urllib3==1.10.2 urllib3121: urllib3==1.21.1 - {py26,py27,py33,py34,py35,py36,pypy}-tornado3: tornado>=3,<4 - {py26,py27,py33,py34,py35,py36,pypy}-tornado4: tornado>=4,<5 - {py26,py27,py33,py34,py35,py36,pypy}-tornado3: pytest-tornado - {py26,py27,py33,py34,py35,py36,pypy}-tornado4: pytest-tornado - {py26,py27,py33,py34,py35,py36}-tornado3: pycurl - {py26,py27,py33,py34,py35,py36}-tornado4: pycurl + {py26,py27,py35,py36,pypy}-tornado3: tornado>=3,<4 + {py26,py27,py35,py36,pypy}-tornado4: tornado>=4,<5 + {py26,py27,py35,py36,pypy}-tornado3: pytest-tornado + {py26,py27,py35,py36,pypy}-tornado4: pytest-tornado + {py26,py27,py35,py36}-tornado3: pycurl + {py26,py27,py35,py36}-tornado4: pycurl boto: boto boto3: boto3 aiohttp: aiohttp