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 9a29e2a954
commit 56ddc010cb
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -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 (0, 5, 6) <= msgpack.version <= (1, 1, 0) and \
return (0, 5, 6) <= msgpack.version <= (1, 1, 1) and \
msgpack.version not in [(1, 0, 1), ] # < add bad releases here to deny list