summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Reifschneider <jafo00@gmail.com>2016-12-17 07:41:45 -0700
committerGitHub <noreply@github.com>2016-12-17 07:41:45 -0700
commit5f69ec888ca58e64458a38477f9a17236166e373 (patch)
tree8720a9728c106b225b9bcbddfda8d046c11258b0
parentf4d8bf260329687b27786b5df7a0e403f1807f85 (diff)
parenta590982122e969bccd0db6a998fd3f39ff529024 (diff)
downloadpython-memcached-5f69ec888ca58e64458a38477f9a17236166e373.tar.gz
Merge pull request #115 from timgraham/drop-py2632
Fix #109: Remove testing for Python 2.6 and 3.2
-rw-r--r--.travis.yml2
-rw-r--r--setup.py2
-rw-r--r--tox.ini2
3 files changed, 1 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 423c5ca..8f6920f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,6 @@
language: python
python:
- - 2.6
- 2.7
- - 3.2
- 3.3
- 3.4
- 3.5
diff --git a/setup.py b/setup.py
index 92c6e0f..af05fcf 100644
--- a/setup.py
+++ b/setup.py
@@ -26,10 +26,8 @@ setup(name="python-memcached",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
diff --git a/tox.ini b/tox.ini
index d431974..1e1a27d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 1.6
-envlist = py26,py27,py32,py33,py34,py35,pypy,pep8
+envlist = py27,py33,py34,py35,pypy,pep8
skipsdist = True
[testenv]