1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-22 15:57:15 +00:00

allow msgpack 1.0.6(rc1)

This commit is contained in:
Thomas Waldmann 2023-09-14 03:21:47 +02:00
parent 1ed7f29572
commit bc9ce99e9b
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ classifiers = [
]
license = {text="BSD"}
dependencies = [
"msgpack >=1.0.3, <=1.0.5",
"msgpack >=1.0.3, <=1.0.6rc1",
"packaging",
"platformdirs >=3.0.0, <4.0.0; sys_platform == 'darwin'", # for macOS: breaking changes in 3.0.0,
"platformdirs >=2.6.0, <4.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, 0, 5)
return (1, 0, 3) <= msgpack.version < (1, 0, 7)
def get_limited_unpacker(kind):