Skip to content

Commit e1e04e1

Browse files
committed
Pynvim 0.3.1
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`
1 parent 019ed7e commit e1e04e1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dummy/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from setuptools import setup
22

33
setup(name='neovim',
4-
version='0.3.1dev',
4+
version='0.3.1',
55
description='Transition packgage for pynvim',
66
url='http://github.com/neovim/python-client',
77
author='Thiago de Arruda',
88
author_email='tpadilha84@gmail.com',
99
license='Apache',
1010
packages=[],
11-
install_requires=['pynvim>=0.3.1dev'],
11+
install_requires=['pynvim>=0.3.1'],
1212
zip_safe=False)

pynvim/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ def __eq__(self, other):
3232
return self.__dict__ == other.__dict__
3333

3434

35-
VERSION = Version(major=0, minor=3, patch=0, prerelease='')
35+
VERSION = Version(major=0, minor=3, patch=1, prerelease='')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
install_requires.append('greenlet')
3030

3131
setup(name='pynvim',
32-
version='0.3.1dev1',
32+
version='0.3.1',
3333
description='Python client to neovim',
3434
url='http://github.com/neovim/python-client',
35-
download_url='https://github.com/neovim/python-client/archive/0.3.0.tar.gz',
35+
download_url='https://github.com/neovim/python-client/archive/0.3.1.tar.gz',
3636
author='Thiago de Arruda',
3737
author_email='tpadilha84@gmail.com',
3838
license='Apache',

0 commit comments

Comments
 (0)