check-python-versions
check-python-versions copied to clipboard
Check that supported Python versions in a setup.py match tox.ini, .travis.yml and a bunch of other files
There are many Python packages that don't specify `python_requires`. There are rumours that setuptools/PyPI is going to make `python_requires` a required field. Adding it manually is a pain, so I'd...
Apparently tox supports numerical range syntax in [generative envlists](https://tox.wiki/en/4.31.0/config.html#generative-environment-list), e.g. ```ini [tox] envlist = py3{8-14},pypy ``` It would be nice if check-python-versions understood this.