When I run tox-quickstart, it offers me some old Python versions:
What Python versions do you want to test against?
[1] py37
[2] py27, py37
[3] (All versions) py27, py35, py36, py37, pypy, jython
[4] Choose each one-by-one
This also happens on systems where I only have PyPy 3.6 and Python 3.9.
I've looked into the code and I've found:
I wonder whether this could be updated:
CURRENT_RELEASE_ENV = "py38" (the latest released stable Python version) and to include "pypy3", "py39" in the listOr even:
CURRENT_RELEASE_ENV value (i.e. when my tox runs on Python 3.9, have "py39")Or even:
- List the current interpreter as the
CURRENT_RELEASE_ENVvalue (i.e. when my tox runs on Python 3.9, have"py39")
Definitely yes.
- Lists available interpreters in quickstart instead of a random selection?
This is a bit harder because you'd need to trial and error, but I'd be ok with it. I generally tend to copy from other projects the tox.ini, hence did not discover this. Happy to accept PRs though.
@hroncok may I work on this issue? I guess, this issue won't be too hard for people who recently start learning Python.
It's yours 馃憤
Feel free to take it. Let me know if you need some help.
ping @finn0 how are you going? Need any help?
@jayvdb first of all sorry for the delay reply. Sorry, I was busy in some other work and I couldn't find any time to work on the issue. I will be busy till next week, meanwhile if anybody wants to take over this issue, please go ahead.
Closing as has been fixed on the rewrite branch.