1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-23 22:51:35 +00:00

Merge pull request #4207 from ThomasWaldmann/msgpack-060

msgpack: also allow version 0.6.0
This commit is contained in:
TW 2018-12-11 02:50:35 +01:00 committed by GitHub
commit c089d6e8ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,8 +44,8 @@
install_requires = [
# we are rather picky about msgpack versions, because a good working msgpack is
# very important for borg, see https://github.com/borgbackup/borg/issues/3753
# as of now, 0.5.6 is the only preferred version of msgpack:
'msgpack==0.5.6',
# as of now, 0.5.6 and 0.6.0 are the only preferred versions of msgpack:
'msgpack >=0.5.6, !=0.5.7, !=0.5.8, !=0.5.9, <=0.6.0',
# if you can't satisfy the above requirement, these are versions that might
# also work ok, IF you make sure to use the COMPILED version of msgpack-python,
# NOT the PURE PYTHON fallback implementation: ==0.5.1, ==0.5.4