From eb4ab7d638798855936e02756b2d759e8dcb4c20 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 29 Jul 2017 06:49:56 -0700 Subject: [PATCH] Start Python 3.6 support --- .travis.yml | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5b069b3..3ce1a8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "2.7" - "3.4" - "3.5" + - "3.6" install: - pip install -r requirements.txt diff --git a/setup.py b/setup.py index f6f7a26..01dd791 100644 --- a/setup.py +++ b/setup.py @@ -35,5 +35,6 @@ def long_description(): 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ] )