Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Latest commit

 

History

History
101 lines (68 loc) · 3.29 KB

File metadata and controls

101 lines (68 loc) · 3.29 KB

tox-minversions

tox plugin which installs the *minimum* versions of a project's dependencies

Tests Linux Test Status Coverage
Activity GitHub last commit GitHub commits since tagged version Maintenance
QA CodeFactor Grade Flake8 Status mypy status
Other License GitHub top language Requirements Status

Installation

tox-minversions can be installed from GitHub.

To install with pip:

$ python -m pip install git+https://github.com/python-coincidence/tox-minversions

Usage

Individual testenvs 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