I have a project on GitHub with a tox.ini file:
[tox]
envlist = py3
[testenv]
deps = -rrequirements.txt
commands =
pytest --doctest-modules
It works well. But when I replace "py3" with "py37", it fails with the error:
ERROR: py37: InterpreterNotFound: python3.7
As far as I know, tox should support Python 3.7. Is this a problem specifically with tox on github?