-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release renames the the package name (for PyPI and importing) to `pynvim`. `import neovim` is still supported as an alias, but new API users should use `import pynvim`. If you already have installed `neovim` in pip, the best way to upgrade this time is to upgrade the `neovim` package: `pip install --upgrade neovim` This will replace the neovim package with a dummy transition package, and install pynvim as a dependency. For a new install, the prefered way is `pip install pynvim`. This release is otherwise functionally identical to pynvim 0.3.0, except for an improved error message. Changes since 0.3.0: - 1fcc17f More informative error message for usage from non-main thread - f237238 Rename package to `pynvim`
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from setuptools import setup | ||
|
||
setup(name='neovim', | ||
version='0.3.1dev', | ||
version='0.3.1', | ||
description='Transition packgage for pynvim', | ||
url='http://github.com/neovim/python-client', | ||
author='Thiago de Arruda', | ||
author_email='tpadilha84@gmail.com', | ||
license='Apache', | ||
packages=[], | ||
install_requires=['pynvim>=0.3.1dev'], | ||
install_requires=['pynvim>=0.3.1'], | ||
zip_safe=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters