Could anyone point me to the best way to let Tox find multiple Python interpreters on a Windows system? I am not allowed to modify the tox.ini for my project. The tox.ini file contains:
envlist = py27,py37
I would like tox to be able to find the Python2 and Python3 interpreters. In Linux, I do this by setting multiple local versions of Python with pyenv (pyenv local 3.7.0, 2.7.15) but the Windows version does not appear to support multiple arguments. Does anyone have any ideas on the easiest way to do this for Windows, preferably without messing with my PATH?