From 8fcdcd384b8b5e17f9b95a10e65a52f3ca78d63f 2021-11-26 19:21:21
From: Matthias Bussonnier <bussonniermatthias@gmail.com>
Date: 2021-11-26 19:21:21
Subject: [PATCH] Pin Jedi to <0.17.2.

This may not completely fix the issue, in particular pip may decide to
downgrade IPython,  but maybe this will lead to less errors.

---

diff --git a/setup.py b/setup.py
index daf5f55..3e734ba 100755
--- a/setup.py
+++ b/setup.py
@@ -186,7 +186,7 @@ extras_require = dict(
 
 install_requires = [
     'setuptools>=18.5',
-    'jedi>=0.10',
+    'jedi>=0.10,<=0.17.2',
     'decorator',
     'pickleshare',
     'traitlets>=4.2',