From 90fb12b53e52314979167098de1c47f75f8fb14e 2021-01-06 15:42:51 From: Dan Green Date: 2021-01-06 15:42:51 Subject: [PATCH] Don't allow Jedi to go to v1.18.0 This addresses issue https://github.com/ipython/ipython/issues/12740, where autocomplete breaks with the latest version of Jedi (1.18.0) --- diff --git a/setup.py b/setup.py index a353555..d3cd425 100755 --- a/setup.py +++ b/setup.py @@ -184,7 +184,7 @@ extras_require = dict( install_requires = [ 'setuptools>=18.5', - 'jedi>=0.16', + 'jedi>=0.16,<0.18.0', 'decorator', 'pickleshare', 'traitlets>=4.2',