[hg] galaxy 3024: Officially support Python 2.6.
details: http://www.bx.psu.edu/hg/galaxy/rev/4f9b630f9976 changeset: 3024:4f9b630f9976 user: Nate Coraor <nate@bx.psu.edu> date: Fri Nov 13 10:39:15 2009 -0500 description: Officially support Python 2.6. diffstat: scripts/check_python.py | 19 ++++++++----------- 1 files changed, 8 insertions(+), 11 deletions(-) diffs (31 lines): diff -r 0e9cd7cfbc04 -r 4f9b630f9976 scripts/check_python.py --- a/scripts/check_python.py Fri Nov 13 10:09:42 2009 -0500 +++ b/scripts/check_python.py Fri Nov 13 10:39:15 2009 -0500 @@ -1,19 +1,16 @@ import os, sys +msg = """ERROR: Your Python version is: %s +Galaxy is currently supported on Python 2.4, 2.5 and 2.6. To run Galaxy, +please download and install a supported version from python.org. If a +supported version is installed but is not your default, getgalaxy.org +contains instructions on how to force Galaxy to use a different version.""" % sys.version[:3] + def check_python(): - return try: - assert sys.version_info[:2] >= ( 2, 4 ) and sys.version_info[:2] <= ( 2, 5 ) + assert sys.version_info[:2] >= ( 2, 4 ) and sys.version_info[:2] <= ( 2, 6 ) except AssertionError: - print >>sys.stderr, "ERROR: Your Python version is:", sys.version.split( ' ', 1 )[0] - print >>sys.stderr, "Galaxy is currently only supported on Python 2.4 and Python 2.5." - if sys.version_info[:2] < ( 2, 4 ): - print >>sys.stderr, "To run Galaxy, please download and install Python 2.5 from http://python.org" - else: - print >>sys.stderr, "To track the progress of Python 2.6 support, please see:" - print >>sys.stderr, " http://bitbucket.org/galaxy/galaxy-central/issue/76/support-python-26" - print >>sys.stderr, "For hints on how to direct Galaxy to use a different python installation, see:" - print >>sys.stderr, " http://bitbucket.org/galaxy/galaxy-central/wiki/GetGalaxy" + print >>sys.stderr, msg raise if __name__ == '__main__':
participants (1)
-
Greg Von Kuster