From a9f2f65154d64cf711c864977a6f8aadeae47d18 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 7 Feb 2016 23:29:54 +0100 Subject: [PATCH] require msgpack==0.4.6 - no python 3.2 support in 0.4.7+ --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c3ed123ff..962e77b90 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,8 @@ # msgpack pure python data corruption was fixed in 0.4.6. # Also, we might use some rather recent API features. -install_requires=['msgpack-python>=0.4.6', ] +# Note: 0.4.7 is also OK, but has no Python 3.2 support any more. +install_requires=['msgpack-python==0.4.6', ] from setuptools import setup, Extension