Skip to content

Commit

Permalink
Merge pull request #8136 from ThomasWaldmann/msgpack-cython-updates-m…
Browse files Browse the repository at this point in the history
…aster

msgpack and cython updates (master)
  • Loading branch information
ThomasWaldmann committed Mar 2, 2024
2 parents c9c5b4d + 03e9642 commit b82bf4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
license = {text="BSD"}
dependencies = [
"msgpack >=1.0.3, <=1.0.7",
"msgpack >=1.0.3, <=1.0.8",
"packaging",
"platformdirs >=3.0.0, <5.0.0; sys_platform == 'darwin'", # for macOS: breaking changes in 3.0.0,
"platformdirs >=2.6.0, <5.0.0; sys_platform != 'darwin'", # for others: 2.6+ works consistently.
Expand Down Expand Up @@ -65,7 +65,7 @@ where = ["src"]
"*" = ["*.c", "*.h", "*.pyx"]

[build-system]
requires = ["setuptools", "wheel", "pkgconfig", "Cython>=3", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools", "wheel", "pkgconfig", "Cython>=3.0.3", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand Down
2 changes: 1 addition & 1 deletion src/borg/helpers/msgpack.py
Expand Up @@ -209,7 +209,7 @@ def is_supported_msgpack():

if msgpack.version in []: # < add bad releases here to deny list
return False
return (1, 0, 3) <= msgpack.version <= (1, 0, 7)
return (1, 0, 3) <= msgpack.version <= (1, 0, 8)


def get_limited_unpacker(kind):
Expand Down

0 comments on commit b82bf4a

Please sign in to comment.