pipreqs/tox.ini
alan-barzilay 19bd8abdb9 Bump python version
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
2021-05-09 00:53:44 -03:00

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