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
21 lines
449 B
YAML
21 lines
449 B
YAML
# Config file for automatic testing at travis-ci.org
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "3.5"
|
|
- "3.4"
|
|
- "2.7"
|
|
- "pypy"
|
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "pip install coverage"
|
|
- "pip install coveralls"
|
|
|
|
# command to run tests, e.g. python setup.py test
|
|
script: coverage run --source=pipreqs setup.py test
|
|
after_success:
|
|
coveralls
|