mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-06 19:45:22 +00:00

Bump tests version and supported versions in setup.py stdlib: update packages for python 3.9 By utilizing the packages listed in https://github.com/jackmaney/python-stdlib-list for python 3.8 and 3.9, we were able to drop all stdlib packages that existed solely in python 2 and add the missing stdlib python 3 packages
17 lines
317 B
INI
17 lines
317 B
INI
[tox]
|
|
envlist = py36, py37, py38, py39, pypy3, flake8
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}:{toxinidir}/pipreqs
|
|
commands = python setup.py test
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[testenv:flake8]
|
|
basepython = python3.9
|
|
commands = flake8 pipreqs
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
flake8
|