From e01fbf94121883ffae8a3cf002114eda2d30bfcb Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 15 Apr 2015 23:18:53 +0200 Subject: [PATCH] remove blosc pull from github, use 1.2.5 pypi release --- setup.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/setup.py b/setup.py index b8fbe4b83..f5bad1f07 100644 --- a/setup.py +++ b/setup.py @@ -98,16 +98,10 @@ elif platform == 'Darwin': # 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', 'blosc>1.2.4'] +install_requires=['msgpack-python>=0.4.6', 'blosc>=1.2.5'] if sys.version_info < (3, 3): 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( name='Attic', version=versioneer.get_version(), @@ -135,5 +129,4 @@ setup( cmdclass=cmdclass, ext_modules=ext_modules, install_requires=install_requires, - dependency_links=dependency_links, )