瀏覽代碼

remove blosc pull from github, use 1.2.5 pypi release

Thomas Waldmann 10 年之前
父節點
當前提交
e01fbf9412
共有 1 個文件被更改,包括 1 次插入8 次删除
  1. 1 8
      setup.py

+ 1 - 8
setup.py

@@ -98,16 +98,10 @@ elif platform == 'Darwin':
 
 
 # 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.
 # Also, we might use some rather recent API features.
-install_requires=['msgpack-python>=0.4.6', 'blosc>1.2.4']
+install_requires=['msgpack-python>=0.4.6', 'blosc>=1.2.5']
 if sys.version_info < (3, 3):
 if sys.version_info < (3, 3):
     install_requires.append('backports.lzma')
     install_requires.append('backports.lzma')
 
 
-dependency_links=[
-    # blosc 1.2.5 is not released yet, but needed for set_blocksize so we can
-    # get parallel compression even if only feeding it 64KB chunks of data...
-    "https://github.com/Blosc/python-blosc/archive/master.zip#egg=blosc-1.2.5"
-]
-
 setup(
 setup(
     name='Attic',
     name='Attic',
     version=versioneer.get_version(),
     version=versioneer.get_version(),
@@ -135,5 +129,4 @@ setup(
     cmdclass=cmdclass,
     cmdclass=cmdclass,
     ext_modules=ext_modules,
     ext_modules=ext_modules,
     install_requires=install_requires,
     install_requires=install_requires,
-    dependency_links=dependency_links,
 )
 )