How can I check what version of the Python Interpreter is interpreting my script?
|
This information is available in the sys.version string in the sys module:
Human readable:
For further processing:
|
|||||||||
|
|
I like http://docs.python.org/library/sys.html#sys.hexversion
|
|||||||
|
|
Your best bet is probably something like so:
Additionally, you can always wrap your imports in a simple try, which should catch syntax errors. And, to @Heikki's point, this code will be compatible with much older versions of python:
|
|||||||||
|
|
Put something like:
at the top of your script. |
|||||
|
sys.version gives you what you want, just pick the first number :) |
|||
|
|
|
Like Seth said, the main script could check But you still need to take care of not using any Python language features in the file that are not available in older Python versions. For example, this is allowed in Python 2.5 and later:
but won't work in older Python versions, because you could only have except OR finally match the try. So for compatibility with older Python versions you need to write:
|
||||
|
|
|
To see a MSDOS script to check the version before running the Python interpreter (to avoid Python version syntax exceptions) See solution: Python: Best way to check for Python version in program that uses new language features? and MS script; Python version check prelaunch of Python module http://pastebin.com/aAuJ91FQ (script likely easy to convert to other OS scripts.) |
|||
|
|