2
0
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:
Marco Hinz 2019-11-21 21:17:14 +01:00
parent bacc0cf594
commit 684ad2323b
No known key found for this signature in database
GPG Key ID: 1C980A1B657B4A4F

View File

@ -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']
},