Explorar el Código

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

require msgpack >= 0.4.6 and < 0.6.0, exclude 0.5.0
TW hace 7 años
padre
commit
2cbcb57ac7
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      setup.py

+ 2 - 2
setup.py

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