Skip to content

Commit 6210545

Browse files
committed
pypi: correct msgpack library name
In short, the msgpack library changes its name and now offered as 'msgpack' rather than 'msgpack-python'. All new versions of the library are shipped under the new name, so we should change our dependency information. See commit 148d12e ('travis-ci: verify different msgpack library versions') for details. Follows up #155
1 parent 9f39179 commit 6210545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ def find_version(*file_paths):
8383
cmdclass=cmdclass,
8484
command_options=command_options,
8585
install_requires=[
86-
'msgpack-python>=0.4',
86+
'msgpack>=0.4.0',
8787
]
8888
)

0 commit comments

Comments
 (0)