neovim / python-gui

Proof-of-concept Nvim GUI. Not maintained.
Apache License 2.0
75 stars 20 forks source link

Rename neovim dependency to pynvim #38

Closed rasendubi closed 5 years ago

rasendubi commented 5 years ago

It has been renamed in 0.3.1.

justinmk commented 5 years ago

Thanks. What about the imports? E.g. https://github.com/neovim/python-gui/blob/master/neovim_gui/screen.py#L2 should be changed to from pynvim.compat.

rasendubi commented 5 years ago

From pynvim 0.3.1 release notes:

import neovim is still supported as an alias for backwards compatibility, but new API users should use import pynvim.

So I suppose imports don't have to be updated.

justinmk commented 5 years ago

Eh, sure, but that usage is deprecated. Oh well.