diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2017-01-28 11:03:43 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2017-01-28 11:04:35 -0800 |
commit | eba059f947235f66d252eac8828745c0c0a831ed (patch) | |
tree | eb22580425222bf1e91dec1e6e883561f21c2630 | |
parent | 3f4ac6e685b122f49b516db3f59c1edc988e6b49 (diff) | |
download | redis-py-eba059f947235f66d252eac8828745c0c0a831ed.tar.gz |
Test Python 3.6 in Travis CI and document in setup.py
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d645f4d..2b6bd3d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python python: + - "3.6" - "3.5" - "3.4" - "3.3" @@ -19,5 +20,5 @@ matrix: include: - python: "2.7" env: TEST_PEP8=1 - - python: "3.5" + - python: "3.6" env: TEST_PEP8=1 @@ -53,11 +53,13 @@ setup( 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', '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.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ] ) @@ -1,6 +1,6 @@ [tox] minversion = 1.8 -envlist = {py26,py27,py32,py33,py34,py35}-{plain,hiredis}, pep8 +envlist = {py26,py27,py32,py33,py34,py35,py36}-{plain,hiredis}, pep8 [testenv] deps = |