Declare support for Python 3.6

All tests pass under Python 3.6, so declare official support for it.
Closes #68.
This commit is contained in:
Jon Banafato 2017-05-15 17:16:02 -04:00
parent dca65c3f42
commit 3b8419ca92
4 changed files with 6 additions and 4 deletions

View File

@ -3,6 +3,7 @@
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"

View File

@ -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
----

View File

@ -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={

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35
envlist = py27, py34, py35, py36
[testenv]
setenv =