Merge pull request #3524 from ThomasWaldmann/fixate-msgpack-requirement-1.1

require msgpack >= 0.4.6 and < 0.5.0 (1.1-maint).
This commit is contained in:
TW 2018-01-10 16:02:55 +01:00 committed by GitHub
commit 5e007ea7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -35,9 +35,12 @@ if my_python < min_python:
# Are we building on ReadTheDocs? # Are we building on ReadTheDocs?
on_rtd = os.environ.get('READTHEDOCS') on_rtd = os.environ.get('READTHEDOCS')
# msgpack pure python data corruption was fixed in 0.4.6. install_requires = [
# Also, we might use some rather recent API features. # msgpack pure python data corruption was fixed in 0.4.6.
install_requires = ['msgpack-python>=0.4.6', ] # msgpack 0.5.0 was a bit of a troublemaker.
# also, msgpack dropped py34 support at 0.5.0.
'msgpack-python>=0.4.6,<0.5.0',
]
# note for package maintainers: if you package borgbackup for distribution, # note for package maintainers: if you package borgbackup for distribution,
# please add llfuse as a *requirement* on all platforms that have a working # please add llfuse as a *requirement* on all platforms that have a working