Skip to content

Bump the prod-deps group across 1 directory with 9 updates#1390

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/prod-deps-dcbf3ee305
Closed

Bump the prod-deps group across 1 directory with 9 updates#1390
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/prod-deps-dcbf3ee305

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Nov 17, 2025

Bumps the prod-deps group with 9 updates in the / directory:

Package From To
zstandard 0.24.0 0.25.0
mistralai 1.6.0 1.9.11
boto3 1.40.74 1.40.75
prometheus-client 0.22.1 0.23.1
llama-api-client 0.3.0 0.5.0
huggingface-hub 0.34.6 1.1.4
openai 1.109.1 2.8.1
pyarrow 21.0.0 22.0.0
tiktoken 0.11.0 0.12.0

Updates zstandard from 0.24.0 to 0.25.0

Release notes

Sourced from zstandard's releases.

0.25.0

  • PyO3 Rust created upgraded from 0.24 to 0.25. (#273)
  • We now use Py_REFCNT(obj) instead of accessing (*obj)->ob_refcnt directly. This fixes a nogil / multi-threaded compile error. (#201, #275)
  • A zstandard commit to fix qsort detection on BSD operating systems has been backported. (#272)
  • The PYTHON_ZSTANDARD_IMPORT_POLICY environment variable now has leading and trailing whitespace stripped. Values like cffi and cffi are now equivalent to cffi.
  • The CI jobs for building wheels have been overhauled to always use cibuildwheel and uv (where possible). This change should be backwards compatible. But wheel building for this project has historically been fragile and there may be unwanted changes. We're optimistic that standardizing on uv (except for musllinux ppc64le and s390x where uv isn't available) will lead to more stability over time.
  • CI now runs tests against the wheels we distribute. Previously, we ran tests against a separate build that was theoretically identical. But the builds may have been subtly different, leading to preventable bugs in our wheels. (Enabling this test coverage did not uncover any failures.)
  • The pyproject.toml build backend has been switched from setuptools.build_meta:__legacy__ to setuptools.build_meta.
  • The setuptools build dependency has been upgraded from <69.0.0 to >=77.0.0. Modern versions of setuptools broke --config-settings=--build-option=... as part of implementing PEP 660. A workaround is to use --config-settings=--global-option=... instead. --global-option apparently is deprecated and the setuptools folks have yet to figure out how to thread config settings into setup.py invocations. (--build-option is sent to the build_wheel command but not the build_editable command.)
  • Python 3.14 wheels are now built with manylinux_2_28 (versus manylinux2014) for older Python versions. This may raise the minimum glibc version, effectively dropping support for Debian 8 and 9, Ubuntu 13.10 through 18.04, Fedora 19 to 28, and RHEL/Centos 7. However, in practice most platforms don't container newer glibc symbols and are still ABI compatible with manylinux2014 and glibc 2.17.
  • We now require cffi >= 2.0.0b on Python 3.14. <3.14 still requires 1.17. (#274)
  • The cffi backend is now automatically disabled for free-threaded builds on Python <3.14, as cffi didn't implement free-threaded support until the 2.0 release. (#274)
  • Added CI coverage for free-threaded CPython 3.13 and 3.14. We do not yet formally support free-threaded builds. (#276)
  • The C and Rust backends now declare the GIL as unused.
  • The pythoncapi_compat.h file has been upgraded to the latest version. (#278)
  • setup.py now depends on packaging and uses packaging.version.Version for version comparisons. This removes some deprecation warnings from usage of legacy distutils Version classes.
  • Relax run-time libzstd version checking in C extension from exactly 1.5.7 to >=1.5.6. (#254, #267)
  • C extension types now (correctly) declare their fully qualified type names

... (truncated)

Changelog

Sourced from zstandard's changelog.

0.25.0 (released 2025-09-14)

  • PyO3 Rust created upgraded from 0.24 to 0.25. (#273)
  • We now use Py_REFCNT(obj) instead of accessing (*obj)->ob_refcnt directly. This fixes a nogil / multi-threaded compile error. (#201, #275)
  • A zstandard commit to fix qsort detection on BSD operating systems has been backported. (#272)
  • The PYTHON_ZSTANDARD_IMPORT_POLICY environment variable now has leading and trailing whitespace stripped. Values like cffi and cffi are now equivalent to cffi.
  • The CI jobs for building wheels have been overhauled to always use cibuildwheel and uv (where possible). This change should be backwards compatible. But wheel building for this project has historically been fragile and there may be unwanted changes. We're optimistic that standardizing on uv (except for musllinux ppc64le and s390x where uv isn't available) will lead to more stability over time.
  • CI now runs tests against the wheels we distribute. Previously, we ran tests against a separate build that was theoretically identical. But the builds may have been subtly different, leading to preventable bugs in our wheels. (Enabling this test coverage did not uncover any failures.)
  • The pyproject.toml build backend has been switched from setuptools.build_meta:__legacy__ to setuptools.build_meta.
  • The setuptools build dependency has been upgraded from <69.0.0 to >=77.0.0. Modern versions of setuptools broke --config-settings=--build-option=... as part of implementing PEP 660. A workaround is to use --config-settings=--global-option=...`` instead. --global-optionapparently is deprecated and the setuptools folks have yet to figure out how to thread config settings intosetup.py invocations. (`--build-option is sent to the build_wheel command but not the build_editable command.)
  • Python 3.14 wheels are now built with manylinux_2_28 (versus manylinux2014) for older Python versions. This may raise the minimum glibc version, effectively dropping support for Debian 8 and 9, Ubuntu 13.10 through 18.04, Fedora 19 to 28, and RHEL/Centos 7. However, in practice most platforms don't container newer glibc symbols and are still ABI compatible with manylinux2014 and glibc 2.17.
  • We now require cffi >= 2.0.0b on Python 3.14. <3.14 still requires 1.17. (#274)
  • The cffi backend is now automatically disabled for free-threaded builds on Python <3.14, as cffi didn't implement free-threaded support until the 2.0 release. (#274)
  • Added CI coverage for free-threaded CPython 3.13 and 3.14. We do not yet formally support free-threaded builds. (#276)
  • The C and Rust backends now declare the GIL as unused.
  • The pythoncapi_compat.h file has been upgraded to the latest version. (#278)
  • setup.py now depends on packaging and uses packaging.version.Version for version comparisons. This removes some deprecation warnings from usage of legacy distutils Version classes.
  • Relax run-time libzstd version checking in C extension from exactly 1.5.7

... (truncated)

Commits
  • 7a77a75 global: release 0.25.0
  • 7935539 rust: cargo upgrade
  • bc3074c rust: update dependencies
  • 51a277a c-ext: correctly define fully qualified type names to zstandard.*
  • 9ccbc39 docs: fix ReST in news.rst
  • 58c68a1 zstd: synchronize qsort code with upstream
  • 395f693 docs: document existence of compression.zstd in stdlib
  • 6967817 docs: update comparisons to other implementations
  • e4e829a docs: document new libzstd version constraint behaviors
  • 604a65a Relax libzstd version checking
  • Additional commits viewable in compare view

Updates mistralai from 1.6.0 to 1.9.11

Release notes

Sourced from mistralai's releases.

python - v1.9.11 - 2025-10-02 15:52:34

Generated by Speakeasy CLI

2025-10-02 15:52:34

Changes

Based on:

Generated

  • [python v1.9.11] .

Releases

Publishing Completed

python - v1.9.10 - 2025-09-02 07:43:34

Generated by Speakeasy CLI

2025-09-02 07:02:26

Changes

Based on:

Generated

  • [python v1.9.10] .

Releases

Publishing Completed

python - v1.9.9 - 2025-08-26 17:40:00

Generated by Speakeasy CLI

2025-08-26 17:34:05

Changes

Based on:

Generated

  • [python v1.9.9] .

Releases

Publishing Completed

python - v1.9.8 - 2025-08-25 16:29:24

Generated by Speakeasy CLI

2025-08-25 14:54:06

Changes

... (truncated)

Changelog

Sourced from mistralai's changelog.

2024-08-07 14:25:13

Changes

Based on:

Generated

  • [python v1.0.0] .

Releases

2024-08-08 18:12:16

Changes

Based on:

Generated

  • [python v1.0.1] .

Releases

2024-08-20 08:36:28

Changes

Based on:

Generated

  • [python v1.0.2] .

Releases

2024-08-29 09:09:05

Changes

Based on:

Generated

  • [python v1.0.3] .

Releases

2024-09-13 16:21:24

Changes

Based on:

Generated

  • [python v1.1.0] .

Releases

... (truncated)

Commits
  • 992b0cb ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.606.10 (#277)
  • 824187d Update Speakeasy SDKs to version 1.606.10 (#275)
  • 2bdff9f Merge pull request #271 from mistralai/speakeasy-sdk-regen-1756796562
  • d985faa Skip flaky remote MCP server example
  • 3784b47 ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.568.2
  • 806e91d ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.568.2 (#268)
  • 049014b Fix: update base azure sdk file to include OCR (#267)
  • 16d470c chore: 🐝 Update SDK - Generate MISTRALAI MISTRALAI-SDK 1.9.8 (#266)
  • 9357abe Merge pull request #265 from mistralai/speakeasy-sdk-regen-1755678497
  • a0c4bac ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.568.2
  • Additional commits viewable in compare view

Updates boto3 from 1.40.74 to 1.40.75

Commits
  • 76bb63d Merge branch 'release-1.40.75'
  • 4094ca6 Bumping version to 1.40.75
  • b37bc1c Add changelog entries from botocore
  • f3fe484 Merge branch 'release-1.40.74' into develop
  • See full diff in compare view

Updates prometheus-client from 0.22.1 to 0.23.1

Release notes

Sourced from prometheus-client's releases.

v0.23.1

What's Changed

New Contributors

Full Changelog: prometheus/client_python@v0.23.0...v0.23.1

v0.23.0

What's Changed

New Contributors

Full Changelog: prometheus/client_python@v0.22.1...v0.23.0

Commits
  • 8746c49 Release 0.23.1
  • 266beb2 fix: use tuples instead of packaging Version (#1136)
  • f947140 fix: Use asyncio.new_event_loop() to create event loop for tests (#1138)
  • b9e78a3 Release 0.23.0
  • b3fbbca Fix issue parsing double spaces after # HELP/# TYPE (#1134)
  • 47d2b41 Do not use global when only reading variable (#1133)
  • 4de31ee fix: remove space after comma in openmetrics exposition (#1132)
  • 3586355 Emit native histograms only when OM 2.0.0 is requested (#1128)
  • 9e3eb6c Fix bug which caused metric publishing to not accept query string parameters ...
  • d358f46 Bump flake8 libraries (#1127)
  • Additional commits viewable in compare view

Updates llama-api-client from 0.3.0 to 0.5.0

Release notes

Sourced from llama-api-client's releases.

v0.5.0

0.5.0 (2025-10-01)

Full Changelog: v0.4.0...v0.5.0

Features

Chores

  • do not install brew dependencies in ./scripts/bootstrap by default (b0bf238)
  • types: change optional parameter type from NotGiven to Omit (19b3fdb)

v0.4.0

0.4.0 (2025-09-16)

Full Changelog: v0.3.0...v0.4.0

Features

  • improve future compat with pydantic v3 (648fe7b)
  • types: replace List[str] with SequenceNotStr in params (565a26d)

Bug Fixes

  • avoid newer type syntax (b9bfeb3)

Chores

  • internal: add Sequence related utils (909f85f)
  • internal: move mypy configurations to pyproject.toml file (68106c6)
  • internal: update pydantic dependency (9ad2fea)
  • internal: update pyright exclude list (203a1a1)
  • tests: simplify get_platform test (21f3cd5)
Changelog

Sourced from llama-api-client's changelog.

0.5.0 (2025-10-01)

Full Changelog: v0.4.0...v0.5.0

Features

Chores

  • do not install brew dependencies in ./scripts/bootstrap by default (b0bf238)
  • types: change optional parameter type from NotGiven to Omit (19b3fdb)

0.4.0 (2025-09-16)

Full Changelog: v0.3.0...v0.4.0

Features

  • improve future compat with pydantic v3 (648fe7b)
  • types: replace List[str] with SequenceNotStr in params (565a26d)

Bug Fixes

  • avoid newer type syntax (b9bfeb3)

Chores

  • internal: add Sequence related utils (909f85f)
  • internal: move mypy configurations to pyproject.toml file (68106c6)
  • internal: update pydantic dependency (9ad2fea)
  • internal: update pyright exclude list (203a1a1)
  • tests: simplify get_platform test (21f3cd5)
Commits
  • 7030b4a release: 0.5.0
  • d56a5d2 feat: file upload readme
  • 8ce69f2 feat(api): manual updates
  • d9165bc chore: do not install brew dependencies in ./scripts/bootstrap by default
  • 7d5e005 chore(types): change optional parameter type from NotGiven to Omit
  • e86ef0a release: 0.4.0
  • 27446e9 chore(internal): update pydantic dependency
  • 9998c23 chore(tests): simplify get_platform test
  • 24b014a chore(internal): move mypy configurations to pyproject.toml file
  • d0a9bdc feat: improve future compat with pydantic v3
  • Additional commits viewable in compare view

Updates huggingface-hub from 0.34.6 to 1.1.4

Release notes

Sourced from huggingface-hub's releases.

[v1.1.4] Paginated results in list_user_access

Full Changelog: huggingface/huggingface_hub@v1.1.3...v1.1.4

[v1.1.3] Avoid HTTP 429 on downloads + fix missing arguments in download API

Full Changelog: huggingface/huggingface_hub@v1.1.0...v1.1.3

v1.1.0: Faster Downloads, new CLI features and more!

🚀 Optimized Download Experience

⚡ This release significantly improves the file download experience by making it faster and cleaning up the terminal output.

snapshot_download is now always multi-threaded, leading to significant performance gains. We removed a previous limitation, as Xet's internal resource management ensures we can parallelize downloads safely without resource contention. A sample benchmark showed this made the download much faster!

Additionally, the output for snapshot_download and hf download CLI is now much less verbose. Per file logs are hidden by default, and all individual progress bars are combined into a single progress bar, resulting in a much cleaner output.

download_2

Inference Providers

🆕 WaveSpeedAI is now an official Inference Provider on Hugging Face! 🎉 WaveSpeedAI provides fast, scalable, and cost-effective model serving for creative AI applications, supporting text-to-image, image-to-image, text-to-video, and image-to-video tasks. 🎨

import os
from huggingface_hub import InferenceClient
client = InferenceClient(
provider="wavespeed",
api_key=os.environ["HF_TOKEN"],
)
video = client.text_to_video(
"A cat riding a bike",
model="Wan-AI/Wan2.2-TI2V-5B",
)

... (truncated)

Commits

Updates openai from 1.109.1 to 2.8.1

Release notes

Sourced from openai's releases.

v2.8.1

2.8.1 (2025-11-17)

Full Changelog: v2.8.0...v2.8.1

Bug Fixes

  • api: align types of input items / output items for typescript (64c9fb3)

v2.8.0

2.8.0 (2025-11-13)

Full Changelog: v2.7.2...v2.8.0

Features

Bug Fixes

  • compat: update signatures of model_dump and model_dump_json for Pydantic v1 (c7bd234)

v2.7.2

2.7.2 (2025-11-10)

Full Changelog: v2.7.1...v2.7.2

Bug Fixes

  • compat with Python 3.14 (15a7ec8)

Chores

  • package: drop Python 3.8 support (afc14f2)

v2.7.1

2.7.1 (2025-11-04)

Full Changelog: v2.7.0...v2.7.1

Bug Fixes

  • api: fix nullability of logprobs (373b7f6)

v2.7.0

2.7.0 (2025-11-03)

Full Changelog: v2.6.1...v2.7.0

... (truncated)

Changelog

Sourced from openai's changelog.

2.8.1 (2025-11-17)

Full Changelog: v2.8.0...v2.8.1

Bug Fixes

  • api: align types of input items / output items for typescript (64c9fb3)

2.8.0 (2025-11-13)

Full Changelog: v2.7.2...v2.8.0

Features

Bug Fixes

  • compat: update signatures of model_dump and model_dump_json for Pydantic v1 (c7bd234)

2.7.2 (2025-11-10)

Full Changelog: v2.7.1...v2.7.2

Bug Fixes

  • compat with Python 3.14 (15a7ec8)

Chores

  • package: drop Python 3.8 support (afc14f2)

2.7.1 (2025-11-04)

Full Changelog: v2.7.0...v2.7.1

Bug Fixes

  • api: fix nullability of logprobs (373b7f6)

2.7.0 (2025-11-03)

Full Changelog: v2.6.1...v2.7.0

Features

  • api: Realtime API token_limits, Hybrid searching ranking options (5b43992)
  • api: remove InputAudio from ResponseInputContent (bd70a33)

... (truncated)

Commits
  • 41ee03f release: 2.8.1
  • f0f0ccc fix(api): align types of input items / output items for typescript
  • 9b8c7e3 release: 2.8.0
  • ac534dc feat(api): gpt 5.1
  • 139b376 codegen metadata
  • 22317c6 fix(compat): update signatures of model_dump and model_dump_json for Pyda...
  • 650be39 release: 2.7.2
  • 080587b fix: compat with Python 3.14
  • 3f52ac8 chore(package): drop Python 3.8 support
  • 6574bcd release: 2.7.1
  • Additional commits viewable in compare view

Updates pyarrow from 21.0.0 to 22.0.0

Release notes

Sourced from pyarrow's releases.

Apache Arrow 22.0.0

Release Notes URL: https://arrow.apache.org/release/22.0.0.html

Apache Arrow 22.0.0 RC1

Release Notes: Release Candidate: 22.0.0 RC1

Apache Arrow 22.0.0 RC0

Release Notes: Release Candidate: 22.0.0 RC0

Commits

Updates tiktoken from 0.11.0 to 0.12.0

Changelog

Sourced from tiktoken's changelog.

[v0.12.0]

  • Build wheels for Python 3.14
  • Build musllinux aarch64 wheels
  • Support for free-threaded Python
  • Update version of pyo3 and rustc-hash
  • Avoid use of blobfile for reading local files
  • Recognise gpt-5 model identifier
  • Minor performance improvement for file reading
Commits

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 commands and options

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the prod-deps group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [zstandard](https://github.com/indygreg/python-zstandard) | `0.24.0` | `0.25.0` |
| [mistralai](https://github.com/mistralai/client-python) | `1.6.0` | `1.9.11` |
| [boto3](https://github.com/boto/boto3) | `1.40.74` | `1.40.75` |
| [prometheus-client](https://github.com/prometheus/client_python) | `0.22.1` | `0.23.1` |
| [llama-api-client](https://github.com/meta-llama/llama-api-python) | `0.3.0` | `0.5.0` |
| [huggingface-hub](https://github.com/huggingface/huggingface_hub) | `0.34.6` | `1.1.4` |
| [openai](https://github.com/openai/openai-python) | `1.109.1` | `2.8.1` |
| [pyarrow](https://github.com/apache/arrow) | `21.0.0` | `22.0.0` |
| [tiktoken](https://github.com/openai/tiktoken) | `0.11.0` | `0.12.0` |



Updates `zstandard` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/indygreg/python-zstandard/releases)
- [Changelog](https://github.com/indygreg/python-zstandard/blob/main/docs/news.rst)
- [Commits](indygreg/python-zstandard@0.24.0...0.25.0)

Updates `mistralai` from 1.6.0 to 1.9.11
- [Release notes](https://github.com/mistralai/client-python/releases)
- [Changelog](https://github.com/mistralai/client-python/blob/main/RELEASES.md)
- [Commits](mistralai/client-python@v1.6.0...v1.9.11)

Updates `boto3` from 1.40.74 to 1.40.75
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.40.74...1.40.75)

Updates `prometheus-client` from 0.22.1 to 0.23.1
- [Release notes](https://github.com/prometheus/client_python/releases)
- [Commits](prometheus/client_python@v0.22.1...v0.23.1)

Updates `llama-api-client` from 0.3.0 to 0.5.0
- [Release notes](https://github.com/meta-llama/llama-api-python/releases)
- [Changelog](https://github.com/meta-llama/llama-api-python/blob/main/CHANGELOG.md)
- [Commits](meta-llama/llama-api-python@v0.3.0...v0.5.0)

Updates `huggingface-hub` from 0.34.6 to 1.1.4
- [Release notes](https://github.com/huggingface/huggingface_hub/releases)
- [Commits](huggingface/huggingface_hub@v0.34.6...v1.1.4)

Updates `openai` from 1.109.1 to 2.8.1
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.109.1...v2.8.1)

Updates `pyarrow` from 21.0.0 to 22.0.0
- [Release notes](https://github.com/apache/arrow/releases)
- [Commits](apache/arrow@apache-arrow-21.0.0...apache-arrow-22.0.0)

Updates `tiktoken` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/openai/tiktoken/releases)
- [Changelog](https://github.com/openai/tiktoken/blob/main/CHANGELOG.md)
- [Commits](openai/tiktoken@0.11.0...0.12.0)

---
updated-dependencies:
- dependency-name: zstandard
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: mistralai
  dependency-version: 1.9.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: boto3
  dependency-version: 1.40.75
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: prometheus-client
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: llama-api-client
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: huggingface-hub
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
- dependency-name: openai
  dependency-version: 2.8.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
- dependency-name: pyarrow
  dependency-version: 22.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
- dependency-name: tiktoken
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Nov 17, 2025
@dependabot dependabot Bot requested a review from a team as a code owner November 17, 2025 23:53
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Nov 17, 2025
@github-actions
Copy link
Copy Markdown

MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 20, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Nov 20, 2025
@dependabot dependabot Bot deleted the dependabot/pip/prod-deps-dcbf3ee305 branch November 20, 2025 21:38
@github-actions github-actions Bot locked and limited conversation to collaborators Nov 20, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants