Merge pull request #92 from jonafato/drop-eol-pythons

Drop support for end-of-lifed Python versions
This commit is contained in:
Jon Banafato 2017-10-20 14:30:57 -04:00 committed by GitHub
commit fc85d87fa2
4 changed files with 2 additions and 6 deletions

View File

@ -5,9 +5,7 @@ language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors

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
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.6, 2.7, 3.3, and 3.4, 3.5, and for PyPy. Check
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.

View File

@ -45,10 +45,8 @@ setup(
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"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',
],

View File

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