summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2021-01-30 21:10:53 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2021-01-30 21:31:33 +0100
commit12d9110882da6fb72537f243dd6bc09cb96c615f (patch)
tree45608988004de13a947b26fb257762f1b37821a0 /setup.py
parentdde13d7122710549f05e931776d2016a7cf1f036 (diff)
also accept msgpack up to 1.0.2
exclude 1.0.1 though, which had some issues (not sure whether they affect borg).
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a9ee6bdcf..09fb2fda5 100644
--- a/setup.py
+++ b/setup.py
@@ -67,7 +67,7 @@ on_rtd = os.environ.get('READTHEDOCS')
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
- 'msgpack >=0.5.6, <=1.0.0',
+ 'msgpack >=0.5.6, <=1.0.2, !=1.0.1',
# Please note:
# using any other version is not supported by borg development and
# any feedback related to issues caused by this will be ignored.