Tool to determine what lowest version of Python required? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T05:31:56Zhttp://stackoverflow.com/feeds/question/804538http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/804538/tool-to-determine-what-lowest-version-of-python-required17Tool to determine what lowest version of Python required?dbr2009-04-29T22:21:12Z2009-05-04T10:55:39Z
<p>Is there something similar to Pylint, that will look at a Python script (or run it), and determine which version of Python each line (or function) requires?</p>
<p>For example, theoretical usage:</p>
<pre><code>$ magic_tool <EOF
with something:
pass
EOF
1: 'with' statement requires Python 2.6 or greater
$ magic_tool <EOF
class Something:
@classmethod
def blah(cls):
pass
EOF
2: classmethod requires Python 2.2 or greater
$ magic_tool <EOF
print """Test
"""
EOF
1: Triple-quote requires Python 1.5 of later
</code></pre>
<p>Is such a thing possible? I suppose the simplest way would be to have all Python versions on disc, run the script with each one and see what errors occur..</p>
http://stackoverflow.com/questions/804538/tool-to-determine-what-lowest-version-of-python-required/804917#8049175Answer by Martin P. Hellwig for Tool to determine what lowest version of Python required?Martin P. Hellwig2009-04-30T00:35:46Z2009-04-30T00:35:46Z<p>Not an actual useful answer but here it goes anyway.
I think this should be doable to make (though probably quite an exercise), for example you could make sure you have all the official grammars for the versions you want to check, like <a href="http://docs.python.org/reference/grammar.html" rel="nofollow">this one</a> .</p>
<p>Then parse the bit of code starting with the first grammar version.
Next you need a similar map of all the built-in module namespaces and parse the code again starting with the earliest version, though it might be tricky to differentiate between built-in modules and modules that are external or something in between like ElementTree.</p>
<p>The result should be an overview of versions that support the syntax of the code and an overview of the modules and which version (if at all) is needed to use it. With that result you could calculate the best lowest and highest version.</p>
http://stackoverflow.com/questions/804538/tool-to-determine-what-lowest-version-of-python-required/819645#8196459Answer by Greg Hewgill for Tool to determine what lowest version of Python required?Greg Hewgill2009-05-04T10:55:39Z2009-05-04T10:55:39Z<p>Inspired by this excellent question, I recently put together a script that tries to do this. You can find it on github at <a href="http://github.com/ghewgill/pyqver/tree/master" rel="nofollow">pyqver</a>.</p>
<p>It's reasonably complete but there are some aspects that are not yet handled (as mentioned in the README file). Feel free to fork and improve it!</p>