diff options
| author | Sean Reifschneider <jafo00@gmail.com> | 2016-12-17 07:41:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-17 07:41:45 -0700 |
| commit | 5f69ec888ca58e64458a38477f9a17236166e373 (patch) | |
| tree | 8720a9728c106b225b9bcbddfda8d046c11258b0 | |
| parent | f4d8bf260329687b27786b5df7a0e403f1807f85 (diff) | |
| parent | a590982122e969bccd0db6a998fd3f39ff529024 (diff) | |
| download | python-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.yml | 2 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | tox.ini | 2 |
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 @@ -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", @@ -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] |
