From c859f8d0418ae2f4848b93e540b1e5cec7b50150 2010-01-10 00:19:52 From: Fernando Perez Date: 2010-01-10 00:19:52 Subject: [PATCH] Update version requirement to 2.5, since that's what we're using anyway. Fixes https://bugs.launchpad.net/ipython/+bug/505090 --- diff --git a/IPython/__init__.py b/IPython/__init__.py index 54c21b2..c8ad53e 100755 --- a/IPython/__init__.py +++ b/IPython/__init__.py @@ -25,9 +25,8 @@ from IPython.core import release # Setup everything #----------------------------------------------------------------------------- - -if sys.version[0:3] < '2.4': - raise ImportError('Python Version 2.4 or above is required for IPython.') +if sys.version[0:3] < '2.5': + raise ImportError('Python Version 2.5 or above is required for IPython.') # Make it easy to import extensions - they are always directly on pythonpath.