Skip to content

Commit

Permalink
Require 'neovim' instead of 'pynvim'
Browse files Browse the repository at this point in the history
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'.
  • Loading branch information
mhinz committed Nov 21, 2019
1 parent bacc0cf commit 684ad23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
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']
},
Expand Down

0 comments on commit 684ad23

Please sign in to comment.