Skip to content

Commit

Permalink
Pynvim 0.3.1
Browse files Browse the repository at this point in the history
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
bfredl committed Nov 17, 2018
1 parent 019ed7e commit e1e04e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dummy/setup.py
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)
2 changes: 1 addition & 1 deletion pynvim/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ def __eq__(self, other):
return self.__dict__ == other.__dict__


VERSION = Version(major=0, minor=3, patch=0, prerelease='')
VERSION = Version(major=0, minor=3, patch=1, prerelease='')
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
install_requires.append('greenlet')

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

0 comments on commit e1e04e1

Please sign in to comment.