diff options
| author | Sean Reifschneider <jafo00@gmail.com> | 2016-12-17 07:19:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-17 07:19:19 -0700 |
| commit | 06995d8351f6848719ec16fdc8d673a2b0135591 (patch) | |
| tree | 9b9fe2e63da60b509215a7705a0b7029037ffe33 | |
| parent | b13d6fcb7164a0c25c1798fcd409bf775a9005b3 (diff) | |
| parent | 0f0cb639ad2dd42e00c78301cf39f34b5869ec8b (diff) | |
| download | python-memcached-06995d8351f6848719ec16fdc8d673a2b0135591.tar.gz | |
Merge pull request #110 from timgraham/py35
Add testing for Python 3.5
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | setup.py | 3 | ||||
| -rw-r--r-- | tox.ini | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 0899d80..423c5ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - 3.2 - 3.3 - 3.4 + - 3.5 - pypy services: - memcached @@ -31,5 +31,6 @@ setup(name="python-memcached", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4" + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", ]) @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py26,py27,py32,py33,py34,pypy,pep8 +envlist = py26,py27,py32,py33,py34,py35,pypy,pep8 skipsdist = True [testenv] |
