msgpack: allow 1.1.1

1.1.1rc1 looked good in testing, so hopefully 1.1.1 will also be ok.
This commit is contained in:
Thomas Waldmann 2025-06-06 18:35:25 +02:00
parent fb527051cb
commit 862f19aab9
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ license-files = ["LICENSE", "AUTHORS"]
dependencies = [
"borghash ~= 0.1.0",
"borgstore ~= 0.3.0",
"msgpack >=1.0.3, <=1.1.0",
"msgpack >=1.0.3, <=1.1.1",
"packaging",
"platformdirs >=3.0.0, <5.0.0; sys_platform == 'darwin'", # for macOS: breaking changes in 3.0.0,
"platformdirs >=2.6.0, <5.0.0; sys_platform != 'darwin'", # for others: 2.6+ works consistently.

View file

@ -209,7 +209,7 @@ def is_supported_msgpack():
if msgpack.version in []: # < add bad releases here to deny list
return False
return (1, 0, 3) <= msgpack.version <= (1, 1, 0)
return (1, 0, 3) <= msgpack.version <= (1, 1, 1)
def get_limited_unpacker(kind):