tox plugin which installs the *minimum* versions of a project's dependencies
Tests | |
---|---|
Activity | |
QA | |
Other |
tox-minversions
can be installed from GitHub.
To install with pip
:
$ python -m pip install git+https://github.com/python-coincidence/tox-minversions
Individual testenv
s can be configured to use the minimum versions of dependencies by setting minversions = True
like so:
[testenv]
minversions = True
Alternatively, the --minversions
option can be given on the command line to use the minimum versions for all testenvs:
$ tox --minversions
$ tox -e py36,py37,mypy --minversions