Merge pull request #7999 from ThomasWaldmann/fix-msgpack-version-check

msgpack version check: use same versions as pyproject.toml
This commit is contained in:
TW 2023-12-26 18:49:47 +01:00 committed by GitHub
commit 68109e7af9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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