Skip to content

Commit 644d24a

Browse files
committed
Include base version for msgpack, because 0.3 doesn't work
If I import neovim with less than version 0.4 of msgpack installed, I get this stack trace: ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/chartdev/venvs/chartio/local/lib/python2.7/site-packages/neovim/__init__.py", line 8, in <module> from .api import DecodeHook, Nvim, SessionHook File "/home/chartdev/venvs/chartio/local/lib/python2.7/site-packages/neovim/api/__init__.py", line 9, in <module> from .nvim import Nvim, NvimError File "/home/chartdev/venvs/chartio/local/lib/python2.7/site-packages/neovim/api/nvim.py", line 4, in <module> from msgpack import ExtType ImportError: cannot import name ExtType ``` 0.4.0 seems to work.
1 parent 42bdfb4 commit 644d24a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup
55

66
install_requires = [
7-
'msgpack-python',
7+
'msgpack-python>=0.4.0',
88
]
99

1010
if sys.version_info < (3, 4):

0 commit comments

Comments
 (0)