Skip to content

Commit

Permalink
Merge pull request #8227 from ThomasWaldmann/allow-msgpack110-1.2
Browse files Browse the repository at this point in the history
allow msgpack 1.1.0
  • Loading branch information
ThomasWaldmann committed May 20, 2024
2 parents 2574abb + 7511cb6 commit d73adda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
# Please note:
# using any other msgpack version is not supported by borg development and
# any feedback related to issues caused by this will be ignored.
'msgpack >=0.5.6, <=1.0.8, !=1.0.1',
'msgpack >=0.5.6, <=1.1.0, !=1.0.1',
'packaging',
]

Expand Down
2 changes: 1 addition & 1 deletion src/borg/helpers/msgpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (0, 5, 6) <= msgpack.version <= (1, 0, 8) and \
return (0, 5, 6) <= msgpack.version <= (1, 1, 0) and \
msgpack.version not in [(1, 0, 1), ] # < add bad releases here to deny list


Expand Down

0 comments on commit d73adda

Please sign in to comment.