From 9ded5b8673e373bc4e47e095f6527509ac80879b Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 16 Apr 2017 17:20:48 -0700 Subject: [PATCH] Document and add testing for support for Python 3.6 --- .travis.yml | 1 + setup.py | 3 +++ tox.ini | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7edf9158..c99d1242 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ python: - 3.3 - 3.4 - 3.5 + - 3.6 install: - pip install -r requirements.txt - pip install requests-mock diff --git a/setup.py b/setup.py index 4db7dba6..ee8dce80 100644 --- a/setup.py +++ b/setup.py @@ -56,11 +56,14 @@ 'Natural Language :: English', 'License :: OSI Approved :: BSD License', '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', ), zip_safe=False, tests_require=tests_require, diff --git a/tox.ini b/tox.ini index 5e40befb..cf640581 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py33, py34, py35, pypy +envlist = py26, py27, py33, py34, py35, py36, pypy [testenv] deps=