Skip to content

Commit

Permalink
neovim python-client 0.1.13
Browse files Browse the repository at this point in the history
Changes since 0.1.12:

* 549f721 Fix spawning a child on python 3.6
* 171d137 Conform to pyuv 1.0 API
* 99a2150 use tox for testing and add python 3.6 to test matrix
  • Loading branch information
bfredl committed Jan 12, 2017
1 parent 99a2150 commit 1ccb2cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neovim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse')


VERSION = Version(major=0, minor=1, patch=13, prerelease="dev")
VERSION = Version(major=0, minor=1, patch=13, prerelease="")


def start_host(session=None):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
install_requires.append('greenlet')

setup(name='neovim',
version='0.1.13dev',
version='0.1.13',
description='Python client to neovim',
url='http://github.com/neovim/python-client',
download_url='https://github.com/neovim/python-client/archive/0.1.12.tar.gz',
download_url='https://github.com/neovim/python-client/archive/0.1.13.tar.gz',
author='Thiago de Arruda',
author_email='tpadilha84@gmail.com',
license='Apache',
Expand Down

0 comments on commit 1ccb2cf

Please sign in to comment.