mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-06 03:25:21 +00:00

The following versions of Python are no longer supported by the core developers of Python and pip: - Python 2.6 - End of life on 2013-10-29 [1] - Dropped from pip on 2017-03-18 [2] - Python 3.3 - End of life on 2017-09-29 [3] - Dropped from pip on 2017-03-22 [4] Developers should migrate off of these versions ASAP, as they may be missing critical security fixes. [1] https://www.python.org/dev/peps/pep-0361/#release-lifespan [2] https://github.com/pypa/pip/pull/4343 [3] https://www.python.org/dev/peps/pep-0398/#lifespan [4] https://github.com/pypa/pip/pull/4355
10 lines
176 B
INI
10 lines
176 B
INI
[tox]
|
|
envlist = py27, py34, py35
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}:{toxinidir}/pipreqs
|
|
commands = python setup.py test
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|