mirror of
https://github.com/mhinz/neovim-remote
synced 2024-11-11 13:10:34 +00:00
Require 'neovim' instead of 'pynvim'
The 'neovim' package acts as transition package for 'pynvim'. This is solely for backward compatibility for operating systems that provide the 'neovim' package via their own package format. E.g. Debian stable (Buster) provides a 'python3-neovim' package, which provides the 'neovim' Python package, but not 'pynvim'. If you install both through pip3, feel free to remove the transitional 'neovim' package after installing or upgrading 'neovim-remote'.
This commit is contained in:
parent
bacc0cf594
commit
684ad2323b
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ setup(
|
||||
long_description = long_description,
|
||||
long_description_content_type = 'text/markdown',
|
||||
python_requires = '>=3.4',
|
||||
install_requires = ['pynvim', 'psutil', 'setuptools'],
|
||||
install_requires = ['neovim', 'psutil', 'setuptools'],
|
||||
entry_points = {
|
||||
'console_scripts': ['nvr = nvr.nvr:main']
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user