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-minversionsIndividual testenvs can be configured to use the minimum versions of dependencies by setting minversions = True like so:
[testenv]
minversions = TrueAlternatively, 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