Skip to content

Commit

Permalink
Fix error with ipython and jedi in inspect (#2879)
Browse files Browse the repository at this point in the history
* There is an open issue with ipython and jedi that causes an exception
  if tab completion is triggered in insights inspect
* Open issue in
  [IPython](ipython/ipython#12740)
* This closes #2878

Signed-off-by: Bob Fahr <bfahr@redhat.com>
(cherry picked from commit 29f342a)
  • Loading branch information
bfahr authored and lhuett committed Jan 11, 2021
1 parent e580cbf commit a238dbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ def maybe_require(pkg):
'ipython',
'colorama',
'jinja2',
'Pygments'
'Pygments',
'jedi<0.18.0' # Open issue with jedi 0.18.0 and iPython <= 7.19
# https://github.com/davidhalter/jedi/issues/1714
])

testing = set([
Expand Down

0 comments on commit a238dbc

Please sign in to comment.