mirror of
https://github.com/borgbackup/borg.git
synced 2026-02-11 14:53:35 -05:00
remove blosc pull from github, use 1.2.5 pypi release
This commit is contained in:
parent
32fa83c156
commit
e01fbf9412
1 changed files with 1 additions and 8 deletions
9
setup.py
9
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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue