1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-09 13:53:09 +00:00

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

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