Merge pull request #3521 from ThomasWaldmann/fixate-msgpack-requirement

require msgpack >= 0.4.6 and < 0.6.0, exclude 0.5.0
This commit is contained in:
TW 2018-01-10 16:03:13 +01:00 committed by GitHub
commit 2cbcb57ac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ on_rtd = os.environ.get('READTHEDOCS')
install_requires = [ install_requires = [
# msgpack pure python data corruption was fixed in 0.4.6. # msgpack pure python data corruption was fixed in 0.4.6.
# Also, we might use some rather recent API features. # msgpack 0.5.0 was a bit of a troublemaker.
'msgpack-python>=0.4.6', 'msgpack-python>=0.4.6,!=0.5.0,<0.6.0',
'pyzmq', 'pyzmq',
] ]