As long as I am lurking in your repo bothering you about PyPy, I would like to mention that python may change the "nodot" convention for 3.10 to become 3_10 rather than 310. This might affect code like here (probably a bad example) that concatenates the python major-minor versions. A better technique would be to avoid thinking about it and use sysconfig.get_config_var('py_version_nodot').
Feel free to close this with no comment if it is not relevant.
As long as I am lurking in your repo bothering you about PyPy, I would like to mention that python may change the "nodot" convention for
3.10
to become3_10
rather than310
. This might affect code like here (probably a bad example) that concatenates the python major-minor versions. A better technique would be to avoid thinking about it and usesysconfig.get_config_var('py_version_nodot')
.Feel free to close this with no comment if it is not relevant.