mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-09 21:57:24 +00:00
msgpack version check: use same versions as pyproject.toml
This commit is contained in:
parent
218160a914
commit
0ab26a04b7
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ def is_slow_msgpack():
|
||||||
def is_supported_msgpack():
|
def is_supported_msgpack():
|
||||||
# DO NOT CHANGE OR REMOVE! See also requirements and comments in setup.py.
|
# DO NOT CHANGE OR REMOVE! See also requirements and comments in setup.py.
|
||||||
import msgpack
|
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
|
msgpack.version not in [] # < add bad releases here to deny list
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue