-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup after the `pynvim` rename, as well as a few bugfixes and improvements. Changes since 0.3.1: - bfb5c26 support `del vim.current.line` - 408025b Handle `nvim_error_event` (errors from async requests) - 14ab154 Don't crash when subprocesses write to stdout - c37b4ed 22e5919 Continue `pynvim` rename - 2aa29f9 test with Python 3.7 in Travis.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 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
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 |
---|---|---|
|
@@ -29,10 +29,10 @@ | |
install_requires.append('greenlet') | ||
|
||
setup(name='pynvim', | ||
version='0.3.1', | ||
version='0.3.2', | ||
description='Python client to neovim', | ||
url='http://github.com/neovim/python-client', | ||
download_url='https://github.com/neovim/python-client/archive/0.3.1.tar.gz', | ||
download_url='https://github.com/neovim/python-client/archive/0.3.2.tar.gz', | ||
author='Thiago de Arruda', | ||
author_email='[email protected]', | ||
license='Apache', | ||
|