Merge pull request #8134 from ThomasWaldmann/msgpack-cython-updates-1.2

msgpack and cython updates (1.2-maint)
This commit is contained in:
TW 2024-03-02 16:35:36 +01:00 committed by GitHub
commit a1649f3af3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -70,7 +70,7 @@ install_requires = [
# 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',
]

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 (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