Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code completion error #6082

Closed
manuelcastr opened this issue Dec 29, 2017 · 1 comment
Closed

Code completion error #6082

manuelcastr opened this issue Dec 29, 2017 · 1 comment

Comments

@manuelcastr
Copy link

Description

Using code completion with Matplotlib.

What steps will reproduce the problem?

  1. typing: plt.axis(
  2. when the open parenthesis is reached it triggers the error

What is the expected output? What do you see instead?

Please provide any additional information below

File "D:\Trabajo\Sources\spyder-git\spyder\utils\introspection\manager.py", line 234, in show_object_info
info = self.get_code_info('info', position, auto=auto)
File "D:\Trabajo\Sources\spyder-git\spyder\utils\introspection\manager.py", line 216, in get_code_info
**kwargs)
File "D:\Trabajo\Sources\spyder-git\spyder\utils\introspection\utils.py", line 75, in init
self.get_info()
File "D:\Trabajo\Sources\spyder-git\spyder\utils\introspection\utils.py", line 87, in get_info
lexer = find_lexer_for_filename(self.filename)
File "D:\Trabajo\Sources\spyder-git\spyder\utils\introspection\utils.py", line 180, in find_lexer_for_filename
lexer = get_lexer_for_filename(filename)
File "C:\Program Files\Python36\lib\site-packages\pygments\lexers_init
.py", line 203, in get_lexer_for_filename
res = find_lexer_class_for_filename(fn, code)
File "C:\Program Files\Python36\lib\site-packages\pygments\lexers_init
.py", line 168, in find_lexer_class_for_filename
for cls in find_plugin_lexers():
File "C:\Program Files\Python36\lib\site-packages\pygments\plugin.py", line 53, in find_plugin_lexers
yield entrypoint.load()
File "C:\Program Files\Python36\lib\site-packages\pkg_resources_init
.py", line 2404, in load
self.require(*args, **kwargs)
File "C:\Program Files\Python36\lib\site-packages\pkg_resources_init
.py", line 2427, in require
items = working_set.resolve(reqs, env, installer, extras=self.extras)
File "C:\Program Files\Python36\lib\site-packages\pkg_resources_init
.py", line 875, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (parso 0.1.1 (c:\program files\python36\lib\site-packages), Requirement.parse('parso==0.1.0'), {'jedi'})

Version and main components

  • Spyder Version: 4.0.0.dev0 aa6e4b6
  • Python Version: 3.6.3
  • Qt Versions: 5.9.3, PyQt5 5.9.2 on Windows

Dependencies

pyflakes >=0.6.0 :  1.6.0 (OK)
pycodestyle >=2.3:  2.3.1 (OK)
pygments >=2.0   :  2.2.0 (OK)
pandas >=0.13.1  :  None (NOK)
numpy >=1.7      :  1.13.3 (OK)
sphinx >=0.6.6   :  1.6.5 (OK)
rope >=0.9.4     :  0.10.7 (OK)
jedi >=0.9.0     :  0.11.0 (OK)
nbconvert >=4.0  :  5.3.1 (OK)
sympy >=0.7.3    :  1.1.1 (OK)
cython >=0.21    :  None (NOK)
qtconsole >=4.2.0:  4.3.1 (OK)
IPython >=4.0    :  6.2.1 (OK)
pylint >=0.25    :  1.7.5 (OK)

@CAM-Gerlach
Copy link
Member

Thanks for reporting. This is a duplicate of many previous errors, e.g. #5673. As the error message states, Jedi is only compatible with parso 0.1.0, not 0.1.1. Therefore, you can update jedi to the latest version with conda update jedi ; you can also downgrade to parso 0.1.0 with e.g. conda install parso=0.1.0 (or similar with pip, if you use that instead), and you can close this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants