diff options
author | AlexSm <[email protected]> | 2024-01-09 18:56:40 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-09 18:56:40 +0100 |
commit | e95f266d2a3e48e62015220588a4fd73d5d5a5cb (patch) | |
tree | a8a784b6931fe52ad5f511cfef85af14e5f63991 /contrib/python/ipython/py3/IPython/__init__.py | |
parent | 50a65e3b48a82d5b51f272664da389f2e0b0c99a (diff) |
Library import 6 (#888)
Diffstat (limited to 'contrib/python/ipython/py3/IPython/__init__.py')
-rw-r--r-- | contrib/python/ipython/py3/IPython/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/__init__.py b/contrib/python/ipython/py3/IPython/__init__.py index 3322562a168..b7235481f21 100644 --- a/contrib/python/ipython/py3/IPython/__init__.py +++ b/contrib/python/ipython/py3/IPython/__init__.py @@ -26,9 +26,10 @@ import sys #----------------------------------------------------------------------------- # Don't forget to also update setup.py when this changes! -if sys.version_info < (3, 9): +if sys.version_info < (3, 10): raise ImportError( """ +IPython 8.19+ supports Python 3.10 and above, following SPEC0. IPython 8.13+ supports Python 3.9 and above, following NEP 29. IPython 8.0-8.12 supports Python 3.8 and above, following NEP 29. When using Python 2.7, please install IPython 5.x LTS Long Term Support version. |