소스 검색

require msgpack==0.4.6 - no python 3.2 support in 0.4.7+

Thomas Waldmann 9 년 전
부모
커밋
a9f2f65154
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      setup.py

+ 2 - 1
setup.py

@@ -19,7 +19,8 @@ on_rtd = os.environ.get('READTHEDOCS')
 
 # 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