msgpack version check: use same versions as pyproject.toml

This commit is contained in:
Thomas Waldmann 2023-12-26 17:15:45 +01:00
parent 218160a914
commit 0ab26a04b7
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 1 additions and 1 deletions

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 (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