From 0ab26a04b7d5c8c44f9ae3a671071388551557a3 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 26 Dec 2023 17:15:45 +0100 Subject: [PATCH] msgpack version check: use same versions as pyproject.toml --- src/borg/helpers/msgpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/helpers/msgpack.py b/src/borg/helpers/msgpack.py index 0cec24a31..5c30cbb78 100644 --- a/src/borg/helpers/msgpack.py +++ b/src/borg/helpers/msgpack.py @@ -182,7 +182,7 @@ def is_slow_msgpack(): def is_supported_msgpack(): # DO NOT CHANGE OR REMOVE! See also requirements and comments in setup.py. import msgpack - return (1, 0, 2) <= msgpack.version <= (1, 0, 7) and \ + return (1, 0, 3) <= msgpack.version <= (1, 0, 7) and \ msgpack.version not in [] # < add bad releases here to deny list