##// END OF EJS Templates
Clarifying that Python 2.6 is now required.
Brian Granger -
Show More
@@ -24,8 +24,8 b' import sys'
24 24 # Setup everything
25 25 #-----------------------------------------------------------------------------
26 26
27 if sys.version[0:3] < '2.5':
28 raise ImportError('Python Version 2.5 or above is required for IPython.')
27 if sys.version[0:3] < '2.6':
28 raise ImportError('Python Version 2.6 or above is required for IPython.')
29 29
30 30
31 31 # Make it easy to import extensions - they are always directly on pythonpath.
General Comments 0
You need to be logged in to leave comments. Login now