aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2017-08-11 18:39:02 +0200
committerThomas Kemmer <tkemmer@computer.org>2017-08-11 18:39:02 +0200
commit6bffc176dc6b127f1ee712b5b68bd8d7ac9a927e (patch)
tree3c3a94687625247fab4114494b676eb80a2b64cf
parent13ba795ad8bcbbf6c7c838de39d189595cf3075d (diff)
downloadcachetools-6bffc176dc6b127f1ee712b5b68bd8d7ac9a927e.tar.gz
Fix #86: Officially support Python 3.6.
-rw-r--r--.travis.yml1
-rw-r--r--setup.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 6a2852b..d24ada3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,6 +7,7 @@ python:
- 3.3
- 3.4
- 3.5
+- 3.6
install:
- pip install coveralls tox
diff --git a/setup.py b/setup.py
index 8e11256..57fa425 100644
--- a/setup.py
+++ b/setup.py
@@ -32,6 +32,7 @@ setup(
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)