Skip to content

Commit 7555c7e

Browse files
Bump backports-zstd from 0.5.0 to 1.0.0 (#11627)
Bumps [backports-zstd](https://github.com/rogdham/backports.zstd) from 0.5.0 to 1.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Rogdham/backports.zstd/blob/master/CHANGELOG.md">backports-zstd's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/rogdham/backports.zstd/releases/tag/v1.0.0">1.0.0</a> - 2025-10-10</h2> <h3>:rocket: Added</h3> <ul> <li>Update code with CPython 3.14.0 version</li> <li>Update type hints with typeshed <code>aa5202465</code></li> <li>Update <code>pythoncapi-compat</code> dependency</li> <li>Allow to use <code>libzstd</code> present on the system with the <code>--system-zstd</code> build backend argument</li> <li>Check the <code>libzstd</code> version during build and at runtime</li> </ul> <h3>:bug: Fixes</h3> <ul> <li>Fix import order issue by importing the <code>tarfile</code> and <code>zipfile</code> modules only when needed.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Rogdham/backports.zstd/commit/e244330a9933691fa1a228fe299b0fe4ad12e2c9"><code>e244330</code></a> chore: prepare v1.0.0</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/d94dd5ebb0be6d2f32442b4eaf002f09dbe3a58f"><code>d94dd5e</code></a> feat: update code from upstream 3.14.0</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/76f250c9195f7f03a5a87251cc31f712266f1ceb"><code>76f250c</code></a> chore: update pythoncapi-compat</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/0d5560525042973c0c15c9267dcfe5c6192122b6"><code>0d55605</code></a> chore: update type hints from upstream</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/b7eb0213a3289425466c435f32a10e970e13c619"><code>b7eb021</code></a> feat: support dynamic linking to libzstd</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/17cc15bfba091e43ad6a77be3253005ff7beac2b"><code>17cc15b</code></a> chore: fix PyPy build for EOL versions</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/8aad94fa8c46591b673c1f4819022c4775e91e8d"><code>8aad94f</code></a> feat: update code from upstream 3.14.0rc3</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/07944293d91ff45474434f2b0ab08eab2961c7b1"><code>0794429</code></a> Import tarfile/zipfile modules only when needed</li> <li>See full diff in <a href="https://github.com/rogdham/backports.zstd/compare/v0.5.0...v1.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=backports-zstd&package-manager=pip&previous-version=0.5.0&new-version=1.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2e11a67 commit 7555c7e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

requirements/base-ft.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ aiosignal==1.4.0
1212
# via -r requirements/runtime-deps.in
1313
async-timeout==5.0.1 ; python_version < "3.11"
1414
# via -r requirements/runtime-deps.in
15-
backports-zstd==0.5.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
15+
backports-zstd==1.0.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
1616
# via -r requirements/runtime-deps.in
1717
brotli==1.1.0 ; platform_python_implementation == "CPython"
1818
# via -r requirements/runtime-deps.in

requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ aiosignal==1.4.0
1212
# via -r requirements/runtime-deps.in
1313
async-timeout==5.0.1 ; python_version < "3.11"
1414
# via -r requirements/runtime-deps.in
15-
backports-zstd==0.5.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
15+
backports-zstd==1.0.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
1616
# via -r requirements/runtime-deps.in
1717
brotli==1.1.0 ; platform_python_implementation == "CPython"
1818
# via -r requirements/runtime-deps.in

requirements/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async-timeout==5.0.1 ; python_version < "3.11"
2424
# valkey
2525
babel==2.17.0
2626
# via sphinx
27-
backports-zstd==0.5.0 ; implementation_name == "cpython"
27+
backports-zstd==1.0.0 ; implementation_name == "cpython"
2828
# via
2929
# -r requirements/lint.in
3030
# -r requirements/runtime-deps.in

requirements/dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async-timeout==5.0.1 ; python_version < "3.11"
2424
# valkey
2525
babel==2.17.0
2626
# via sphinx
27-
backports-zstd==0.5.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
27+
backports-zstd==1.0.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
2828
# via
2929
# -r requirements/lint.in
3030
# -r requirements/runtime-deps.in

requirements/lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ annotated-types==0.7.0
1010
# via pydantic
1111
async-timeout==5.0.1
1212
# via valkey
13-
backports-zstd==0.5.0 ; implementation_name == "cpython"
13+
backports-zstd==1.0.0 ; implementation_name == "cpython"
1414
# via -r requirements/lint.in
1515
blockbuster==1.5.25
1616
# via -r requirements/lint.in

requirements/runtime-deps.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ aiosignal==1.4.0
1212
# via -r requirements/runtime-deps.in
1313
async-timeout==5.0.1 ; python_version < "3.11"
1414
# via -r requirements/runtime-deps.in
15-
backports-zstd==0.5.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
15+
backports-zstd==1.0.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
1616
# via -r requirements/runtime-deps.in
1717
brotli==1.1.0 ; platform_python_implementation == "CPython"
1818
# via -r requirements/runtime-deps.in

requirements/test-ft.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ annotated-types==0.7.0
1414
# via pydantic
1515
async-timeout==5.0.1 ; python_version < "3.11"
1616
# via -r requirements/runtime-deps.in
17-
backports-zstd==0.5.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
17+
backports-zstd==1.0.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
1818
# via -r requirements/runtime-deps.in
1919
blockbuster==1.5.25
2020
# via -r requirements/test-common.in

requirements/test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ annotated-types==0.7.0
1414
# via pydantic
1515
async-timeout==5.0.1 ; python_version < "3.11"
1616
# via -r requirements/runtime-deps.in
17-
backports-zstd==0.5.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
17+
backports-zstd==1.0.0 ; platform_python_implementation == "CPython" and python_version < "3.14"
1818
# via -r requirements/runtime-deps.in
1919
blockbuster==1.5.25
2020
# via -r requirements/test-common.in

0 commit comments

Comments
 (0)