Skip to content

Commit

Permalink
Merge pull request #8134 from ThomasWaldmann/msgpack-cython-updates-1.2
Browse files Browse the repository at this point in the history
msgpack and cython updates (1.2-maint)
  • Loading branch information
ThomasWaldmann committed Mar 2, 2024
2 parents fe8d11c + a6b66fc commit a1649f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.d/development.lock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ pytest==7.4.3
pytest-xdist==3.3.1
pytest-cov==4.1.0
pytest-benchmark==4.0.0
Cython==0.29.36
Cython==0.29.37
python-dateutil==2.8.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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.7, !=1.0.1',
'msgpack >=0.5.6, <=1.0.8, !=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, 7) and \
return (0, 5, 6) <= msgpack.version <= (1, 0, 8) and \
msgpack.version not in [(1, 0, 1), ] # < add bad releases here to deny list


Expand Down

0 comments on commit a1649f3

Please sign in to comment.