소스 검색

Merge branch 'merge' into merge-all

Conflicts:
	setup.py
Thomas Waldmann 10 년 전
부모
커밋
47887fb2bc
1개의 변경된 파일3개의 추가작업 그리고 11개의 파일을 삭제
  1. 3 11
      setup.py

+ 3 - 11
setup.py

@@ -96,17 +96,9 @@ elif platform == 'FreeBSD':
 elif platform == 'Darwin':
     ext_modules.append(Extension('attic.platform_darwin', [platform_darwin_source]))
 
-# msgpack pure python data corruption in some versions.
-# The compiled C-version of python-msgpack was not affected.
-# So, IF you had a compiler installed AND you did not force the pure-python
-# version, you likely were not affected by the issue.
-# python-msgpack <=0.4.2 is OK, 0.4.5 is latest release, but bug was fixed
-# in repo.
-# Details see:
-# https://github.com/jborg/attic/issues/171
-# https://github.com/jborg/attic/issues/185
-# https://github.com/msgpack/msgpack-python/issues/124
-install_requires=['msgpack-python<=0.4.2,>0.4.5']
+# 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']
 if sys.version_info < (3, 3):
     install_requires.append('backports.lzma')