From e389f370b495aa19114e1b555a9cc9ac7f1bb054 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Sun, 11 Jun 2023 15:25:34 -0500 Subject: [PATCH] Skip more buggy IPython versions This will make this package to pick up an IPython version that solves some errors found by our users. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ece9700a..6587d16b 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def get_version(module='spyder_kernels'): 'ipykernel>=4.5,<5; python_version<"3"', 'ipykernel>=6.16.1,<7; python_version>="3"', 'ipython<6; python_version<"3"', - 'ipython>=7.31.1,<9,!=8.8.0,!=8.9.0,!=8.10.0; python_version>="3"', + 'ipython>=7.31.1,<9,!=8.8.0,!=8.9.0,!=8.10.0,!=8.11.0,!=8.12.0,!=8.12.1; python_version>="3"', 'jupyter-client>=5.3.4,<6; python_version<"3"', 'jupyter-client>=7.4.9,<9; python_version>="3"', 'pyzmq>=17,<20; python_version<"3"',