allow msgpack 1.0.8, fixes #8133

This commit is contained in:
Thomas Waldmann 2024-03-02 14:19:11 +01:00
parent c9c5b4db85
commit a507a2cb3b
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ classifiers = [
]
license = {text="BSD"}
dependencies = [
"msgpack >=1.0.3, <=1.0.7",
"msgpack >=1.0.3, <=1.0.8",
"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, 0, 7)
return (1, 0, 3) <= msgpack.version <= (1, 0, 8)
def get_limited_unpacker(kind):