Fix #109: Remove testing for Python 2.6 and 3.2

This commit is contained in:
Tim Graham 2016-12-17 09:24:55 -05:00
parent f4d8bf2603
commit a590982122
3 changed files with 1 additions and 5 deletions

View File

@ -1,8 +1,6 @@
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5

View File

@ -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",

View File

@ -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]