Explicitly support Python 3.5

All tests pass on Python 3.5, so declare official support for it.
This commit is contained in:
Jon Banafato 2016-11-03 10:56:41 -04:00
parent 345a275b3a
commit 980c92e6fe
4 changed files with 4 additions and 2 deletions

View File

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

View File

@ -99,7 +99,7 @@ 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 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 your new functionality into a function with a docstring, and add the
feature to the list in README.rst. feature to the list in README.rst.
3. The pull request should work for Python 2.6, 2.7, 3.3, and 3.4, and for PyPy. Check 3. The pull request should work for Python 2.6, 2.7, 3.3, and 3.4, 3.5, and for PyPy. Check
https://travis-ci.org/bndr/pipreqs/pull_requests https://travis-ci.org/bndr/pipreqs/pull_requests
and make sure that the tests pass for all supported Python versions. and make sure that the tests pass for all supported Python versions.

View File

@ -50,6 +50,7 @@ setup(
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
], ],
test_suite='tests', test_suite='tests',
entry_points={ entry_points={

View File

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