tkf / emacs-jedi

Python auto-completion for Emacs
http://tkf.github.io/emacs-jedi/latest/
666 stars 89 forks source link

Synchronise dependencies for jedi in the melpa repository #364

Closed paaguti closed 2 years ago

paaguti commented 2 years ago

Currently the dependencies for jedi in the melpa repository indicate the jedi-core from melpa-stable. Could you please make sure that melpa uses melpa and melpastable uses melpa-stable? This would avoid many annoying messages when using this wonderful package.

My current workaround is load both jediand jedi-core in my .emacs.d/init.el

(use-package jedi-core
  :after python
  :pin melpa
  :ensure t)

(use-package jedi
  :after jedi-core
  :pin melpa
  :ensure t

...