From 3d08c5e4703652d88ce8f1f79a32a8b8d91c2510 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 21 Dec 2016 16:12:48 -0500 Subject: [PATCH 1/2] Remove testing for Python 3.3 --- .travis.yml | 1 - ChangeLog | 2 +- setup.py | 1 - tox.ini | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9a0856f..23df918 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - 2.7 - - 3.3 - 3.4 - 3.5 - pypy diff --git a/ChangeLog b/ChangeLog index b56ac0d..426fbc7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,7 @@ * Fixed typos in docstrings (PR from Romuald Brunet, reviewed by Tim Graham) #105 - * Removing Python 2.6 and 3.2 testing (PR from Tim Graham) #115 + * Removing Python 2.6, 3.2, and 3.3 testing (PR from Tim Graham) #115, #116 * Removing unnecessary parens in return statements (PR from Tim Graham) #113 diff --git a/setup.py b/setup.py index af05fcf..df3d413 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", ]) diff --git a/tox.ini b/tox.ini index 5fc2f00..bbfb3dd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py27,py33,py34,py35,pypy,pep8 +envlist = py27,py34,py35,pypy,pep8 skipsdist = True [testenv] From e45623b31ba4c49ca5b9ae0894aa9b3d1cdf8f7d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 30 Oct 2017 14:15:02 -0400 Subject: [PATCH 2/2] Add testing for Python 3.6 --- .travis.yml | 1 + ChangeLog | 2 +- setup.py | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 23df918..bb06758 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ python: - 2.7 - 3.4 - 3.5 + - 3.6 - pypy services: - memcached diff --git a/ChangeLog b/ChangeLog index 426fbc7..168685e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ - * Added testing for Python 3.5 (PR from Tim Graham) #110 + * Added testing for Python 3.5 and 3.6 (PR from Tim Graham) #110, #131 * Fixed typos in docstrings (PR from Romuald Brunet, reviewed by Tim Graham) #105 diff --git a/setup.py b/setup.py index df3d413..09ed139 100644 --- a/setup.py +++ b/setup.py @@ -30,4 +30,5 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", ]) diff --git a/tox.ini b/tox.ini index bbfb3dd..7d4fc52 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py27,py34,py35,pypy,pep8 +envlist = py27,py34,py35,p36,pypy,pep8 skipsdist = True [testenv]