Skip to content

Commit d2cdf55

Browse files
committed
Pynvim 0.2.5
This release adds support for Python 3.7 which now is in beta. `async` is a keyword in python3.7, and it should be replaced with `async_` when used as a keyword argument to API methods. `async` is still supported with python 2.7 and 3.6 for the moment, but considered deprecated. Also, integration with the in-process lua interpreter in Nvim is now supported. Changes since 0.2.4: * debcde0 clean up remote object implementation (#313) * e880fe7 Guidelines for local plugin development (#317) * 1ab98e8 Update the working directory on DirChanged for legacy plugins (#296) * d53415d Fix SyntaxError in py3.7: use `async_` instead of `async` (#274) * b65f62d Use `pytest` as `nosetests` are not longer maintained (#266) * d9aed96 Support using lua functions. `buf.update_higlights` as an internal example (#325)
1 parent 3b91e76 commit d2cdf55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neovim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse')
2222

2323

24-
VERSION = Version(major=0, minor=2, patch=4, prerelease='')
24+
VERSION = Version(major=0, minor=2, patch=5, prerelease='')
2525

2626

2727
def start_host(session=None):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
install_requires.append('greenlet')
2828

2929
setup(name='neovim',
30-
version='0.2.4',
30+
version='0.2.5',
3131
description='Python client to neovim',
3232
url='http://github.com/neovim/python-client',
3333
download_url='https://github.com/neovim/python-client/archive/0.2.4.tar.gz',

0 commit comments

Comments
 (0)