Skip to content

Commit

Permalink
Update Jedi requirement to 0.15.2
Browse files Browse the repository at this point in the history
That version works correctly with Parso 0.5.2, so there should be no
harm in updating to it.
  • Loading branch information
ccordoba12 committed Mar 16, 2020
1 parent dfc62c9 commit 694f1ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion binder/environment.yml
Expand Up @@ -14,7 +14,7 @@ dependencies:
- diff-match-patch >=20181111
- intervaltree
- ipython >=4.0
- jedi =0.14.1
- jedi =0.15.2
- keyring
- nbconvert >=4.0
- numpydoc >=0.6.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/conda.txt
Expand Up @@ -9,7 +9,7 @@ cloudpickle >=0.5.0
diff-match-patch >=20181111
intervaltree
IPython >=4.0
jedi =0.14.1
jedi =0.15.2
keyring
nbconvert >=4.0
numpydoc >=0.6.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -209,7 +209,7 @@ def run(self):
'ipython>=4.0',
# This is here until Jedi 0.15+ fixes completions for
# Numpy and Pandas
'jedi==0.14.1',
'jedi==0.15.2',
# Don't require keyring for Python 2 and Linux
# because it depends on system packages
'keyring;sys_platform!="linux2"',
Expand Down
2 changes: 1 addition & 1 deletion spyder/dependencies.py
Expand Up @@ -36,7 +36,7 @@
DIFF_MATCH_PATCH_REQVER = '>=20181111'
INTERVALTREE_REQVER = None
IPYTHON_REQVER = ">=4.0;<6.0" if PY2 else ">=4.0"
JEDI_REQVER = '=0.14.1'
JEDI_REQVER = '=0.15.2'
KEYRING_REQVER = None
NBCONVERT_REQVER = '>=4.0'
NUMPYDOC_REQVER = '>=0.6.0'
Expand Down

0 comments on commit 694f1ce

Please sign in to comment.