neovim / pynvim

Python client and plugin host for Nvim
http://pynvim.readthedocs.io/en/latest/
Apache License 2.0
1.48k stars 118 forks source link

Incorrectly set version in setup.py #431

Closed mcepl closed 4 years ago

mcepl commented 4 years ago

You have in setup.py still version = 0.4.0.

This patch fixes it, but it is a bit obvious.

justinmk commented 4 years ago

? Where are you getting this from? A tarball somewhere? pypi?

version was set to 0.4.1 in https://github.com/neovim/pynvim/commit/dd45f83c798fcb5bbb5be4a0843f6e0b47e06bd0

mcepl commented 4 years ago

? Where are you getting this from? A tarball somewhere? pypi?

version was set to 0.4.1 in dd45f83

Tarball of course. https://github.com/neovim/pynvim/archive/0.4.1/pynvim-0.4.1.tar.gz

justinmk commented 4 years ago

You're right, 0.4.1 tag points to some mistaken commit, and its setup.py is wrong:

https://github.com/neovim/pynvim/blob/0.4.1/setup.py

Hopefully now that release process is documented this won't happen again. We should release 0.4.2 soon to fix this.