Procházet zdrojové kódy

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

msgpack and cython updates (1.2-maint)
TW před 1 rokem
rodič
revize
a1649f3af3
3 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 1 1
      requirements.d/development.lock.txt
  2. 1 1
      setup.py
  3. 1 1
      src/borg/helpers/msgpack.py

+ 1 - 1
requirements.d/development.lock.txt

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

+ 1 - 1
setup.py

@@ -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',
 ]
 

+ 1 - 1
src/borg/helpers/msgpack.py

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