mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-12 02:17:54 -04:00
Merge pull request #7999 from ThomasWaldmann/fix-msgpack-version-check
msgpack version check: use same versions as pyproject.toml
This commit is contained in:
commit
68109e7af9
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue