From e540004228448699c4554baaa699e5b9808d886b Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Sun, 5 Nov 2023 18:55:31 -0500 Subject: [PATCH] Skip IPython 8.17.1 in our dependencies for Python 3.9+ That's because that version broke the autoreload magic. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9de57ea6..3a417cde 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def get_version(module='spyder_kernels'): 'ipython<6; python_version<"3"', 'ipython>=7.31.1,<8; python_version<"3.8"', 'ipython>=8.12.2,<8.13; python_version=="3.8"', - 'ipython>=8.13.0,<9; python_version>"3.8"', + 'ipython>=8.13.0,<9,!=8.17.1; python_version>"3.8"', 'jupyter-client>=5.3.4,<6; python_version<"3"', 'jupyter-client>=7.4.9,<9; python_version>="3"', 'pyzmq>=17,<20; python_version<"3"',