From 3b8419ca92f598f16d85e4f9740014042399b0d0 Mon Sep 17 00:00:00 2001 From: Jon Banafato Date: Mon, 15 May 2017 17:16:02 -0400 Subject: [PATCH] Declare support for Python 3.6 All tests pass under Python 3.6, so declare official support for it. Closes #68. --- .travis.yml | 1 + CONTRIBUTING.rst | 6 +++--- setup.py | 1 + tox.ini | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 62ea617..9a7194b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: python python: + - "3.6" - "3.5" - "3.4" - "2.7" diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index b314f93..e6ae58a 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -99,9 +99,9 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 2.7, and 3.4, 3.5, and for PyPy. Check - https://travis-ci.org/bndr/pipreqs/pull_requests - and make sure that the tests pass for all supported Python versions. +3. The pull request should work for Python 2.7, 3.4, 3.5, 3.6, and PyPy. Check + https://travis-ci.org/bndr/pipreqs/pull_requests and make sure that the + tests pass for all supported Python versions. Tips ---- diff --git a/setup.py b/setup.py index 1c11f94..edf7aa8 100755 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ setup( 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], test_suite='tests', entry_points={ diff --git a/tox.ini b/tox.ini index ec48e79..69eed48 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35 +envlist = py27, py34, py35, py36 [testenv] setenv =