If I find a python script in a folder, how might the developer of this script relay to me as to which version of python the script is to be run with? I have added the first python script to a projects codebase (a system test for confirming that a bug has been fixed) and other than adding a README file, I am wondering if there is another way for pointing out that the script runs for Python 3 and not for Python 2.
My script is called bug-7.py
and should be executed using "python3 bug-7.py"
unless python = python3. Eventually such tests could be run using nosetest.