Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 20, 2025

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

Package From To
zstandard 0.24.0 0.25.0
pydantic 2.11.9 2.12.3
tomli 2.2.1 2.3.0
fastapi 0.118.0 0.119.1
together 1.5.26 1.5.27
anthropic 0.69.0 0.71.0
google-api-python-client 2.183.0 2.185.0
google-genai 1.39.1 1.45.0
mistralai 1.6.0 1.9.11
boto3 1.40.42 1.40.55
prometheus-client 0.22.1 0.23.1
llama-api-client 0.3.0 0.5.0
huggingface-hub 0.34.6 0.35.3
openai 1.109.1 2.6.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 pydantic from 2.11.9 to 2.12.3

Release notes

Sourced from pydantic's releases.

v2.12.3 2025-10-17

v2.12.3 (2025-10-17)

What's Changed

This is the third 2.13 patch release, fixing issues related to the FieldInfo class, and reverting a change to the supported after model validator function signatures.

  • Raise a warning when an invalid after model validator function signature is raised by @​Viicos in #12414. Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.
  • Add FieldInfo.asdict() method, improve documentation around FieldInfo by @​Viicos in #12411. This also adds back support for mutations on FieldInfo classes, that are reused as Annotated metadata. However, note that this is still not a supported pattern. Instead, please refer to the added example in the documentation.

The blog post section on changes was also updated to document the changes related to serialize_as_any.

Full Changelog: pydantic/pydantic@v2.12.2...v2.12.3

v2.12.2 2025-10-14

v2.12.2 (2025-10-14)

What's Changed

Fixes

  • Release a new pydantic-core version, as a corrupted CPython 3.10 manylinux2014_aarch64 wheel got uploaded (pydantic-core#1843).
  • Fix issue with recursive generic models with a parent model class by @​Viicos in #12398

Full Changelog: pydantic/pydantic@v2.12.1...v2.12.2

v2.12.1 2025-10-13

v2.12.1 (2025-10-13)

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes

New Contributors

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.12.3 (2025-10-17)

GitHub release

What's Changed

This is the third 2.13 patch release, fixing issues related to the FieldInfo class, and reverting a change to the supported after model validator function signatures.

  • Raise a warning when an invalid after model validator function signature is raised by @​Viicos in #12414. Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.
  • Add FieldInfo.asdict() method, improve documentation around FieldInfo by @​Viicos in #12411. This also add back support for mutations on FieldInfo classes, that are reused as Annotated metadata. However, note that this is still not a supported pattern. Instead, please refer to the added example in the documentation.

The blog post section on changes was also updated to document the changes related to serialize_as_any.

v2.12.2 (2025-10-14)

GitHub release

What's Changed

Fixes

  • Release a new pydantic-core version, as a corrupted CPython 3.10 manylinux2014_aarch64 wheel got uploaded (pydantic-core#1843).
  • Fix issue with recursive generic models with a parent model class by @​Viicos in #12398

v2.12.1 (2025-10-13)

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes

New Contributors

... (truncated)

Commits
  • 1a8850d Prepare release 2.12.3
  • 09dbcf2 Add FieldInfo.asdict() method, improve documentation around FieldInfo
  • 5da4331 Improve documentation about serialize as any behavior
  • 9c86324 Raise a warning when an invalid after model validator function signature is r...
  • 36a73c6 Update pydantic-extra-types dependency to version >=2.10.6
  • 1e616a3 Prepare release v2.12.2
  • dc302e2 Fix issue with recursive generic models with a parent model class
  • 6876485 Bump pydantic-core to v2.41.4
  • b4076c6 Prepare release 2.12.1
  • b67f072 Bump pydantic-core to v2.41.3
  • Additional commits viewable in compare view

Updates tomli from 2.2.1 to 2.3.0

Changelog

Sourced from tomli's changelog.

2.3.0

  • Added
    • Binary wheels for Python 3.14 (also free-threaded)
  • Performance
    • Reduced import time
Commits
  • 3fccd16 Bump version: 2.2.1 → 2.3.0
  • 6504016 Add 2.3.0 changelog
  • 0bc66fc Remove now off-by-default PyPy from cibuildwheel skip list
  • 0aa242f Update license metadata to appease PEP 639
  • a18221e Bump GitHub CI actions
  • 6fa4d90 [pre-commit.ci] pre-commit autoupdate (#260)
  • b974fa1 [pre-commit.ci] pre-commit autoupdate (#248)
  • f574f36 Update mypy to 1.15 and use --strict mode (#257)
  • 1da01ef Reduce import time by removing typing import (#251)
  • 4188188 Reduce import time by removing string and tomli._types imports
  • Additional commits viewable in compare view

Updates fastapi from 0.118.0 to 0.119.1

Release notes

Sourced from fastapi's releases.

0.119.1

Fixes

  • 🐛 Fix internal Pydantic v1 compatibility (warnings) for Python 3.14 and Pydantic 2.12.1. PR #14186 by @​svlandeg.

Docs

  • 📝 Replace starlette.io by starlette.dev and uvicorn.org by uvicorn.dev. PR #14176 by @​Kludex.

Internal

0.119.0

FastAPI now (temporarily) supports both Pydantic v2 models and pydantic.v1 models at the same time in the same app, to make it easier for any FastAPI apps still using Pydantic v1 to gradually but quickly migrate to Pydantic v2.

from fastapi import FastAPI
from pydantic import BaseModel as BaseModelV2
from pydantic.v1 import BaseModel
class Item(BaseModel):
name: str
description: str | None = None
class ItemV2(BaseModelV2):
title: str
summary: str | None = None
app = FastAPI()
@​app.post("/items/", response_model=ItemV2)
def create_item(item: Item):
return {"title": item.name, "summary": item.description}

Adding this feature was a big effort with the main objective of making it easier for the few applications still stuck in Pydantic v1 to migrate to Pydantic v2.

And with this, support for Pydantic v1 is now deprecated and will be removed from FastAPI in a future version soon.

Note: have in mind that the Pydantic team already stopped supporting Pydantic v1 for recent versions of Python, starting with Python 3.14.

You can read in the docs more about how to Migrate from Pydantic v1 to Pydantic v2.

Features

... (truncated)

Commits
  • 864b569 🔖 Release version 0.119.1
  • 43f15d3 📝 Update release notes
  • d8c691f 🐛 Fix internal Pydantic v1 compatibility (warnings) for Python 3.14 and Pydan...
  • 6e49dc0 📝 Update release notes
  • 7df594d 🔧 Add sponsor Requestly (#14205)
  • 81f8583 📝 Update release notes
  • 7f810ca 🔧 Configure reminder for waiting label in issue-manager (#14156)
  • 414f961 📝 Update release notes
  • dde7bd1 📝 Replace starlette.io by starlette.dev and uvicorn.org by `uvicorn.dev...
  • 2e721e1 🔖 Release version 0.119.0
  • Additional commits viewable in compare view

Updates together from 1.5.26 to 1.5.27

Release notes

Sourced from together's releases.

v1.5.27

What's Changed

Full Changelog: togethercomputer/together-python@v1.5.26...v1.5.27

Commits

Updates anthropic from 0.69.0 to 0.71.0

Release notes

Sourced from anthropic's releases.

v0.71.0

0.71.0 (2025-10-16)

Full Changelog: v0.70.0...v0.71.0

Features

  • api: adding support for agent skills (51a606f)

v0.70.0

0.70.0 (2025-10-15)

Full Changelog: v0.69.0...v0.70.0

Features

Chores

  • client: add context-management-2025-06-27 beta header (36dd334)
  • client: add model-context-window-exceeded-2025-08-26 beta header (2cbdb0f)
  • internal: detect missing future annotations with ruff (b2a2b05)
Changelog

Sourced from anthropic's changelog.

0.71.0 (2025-10-16)

Full Changelog: v0.70.0...v0.71.0

Features

  • api: adding support for agent skills (51a606f)

0.70.0 (2025-10-15)

Full Changelog: v0.69.0...v0.70.0

Features

Chores

  • client: add context-management-2025-06-27 beta header (36dd334)
  • client: add model-context-window-exceeded-2025-08-26 beta header (2cbdb0f)
  • internal: detect missing future annotations with ruff (b2a2b05)
Commits
  • 4022488 release: 0.71.0
  • 84aa153 feat(api): adding support for agent skills
  • 16eb640 release: 0.70.0
  • c96f6eb feat(api): manual updates
  • 5426911 chore(internal): detect missing future annotations with ruff
  • b9f8b1f codegen metadata
  • d740926 chore(client): add model-context-window-exceeded-2025-08-26 beta header
  • 12bf3c4 chore(client): add context-management-2025-06-27 beta header
  • See full diff in compare view

Updates google-api-python-client from 2.183.0 to 2.185.0

Release notes

Sourced from google-api-python-client's releases.

v2.185.0

2.185.0 (2025-10-14)

Features

... (truncated)

Commits

Updates google-genai from 1.39.1 to 1.45.0

Release notes

Sourced from google-genai's releases.

v1.45.0

1.45.0 (2025-10-15)

Features

  • Add support for Python 3.14. (f0083a2)

Bug Fixes

  • Keys in Live API tool responses are incorrectly re-cased (57a4765)

v1.44.0

1.44.0 (2025-10-15)

Features

  • Support fully override base_url and raw model name when none of the project, locations, api_key are configured (160997e)
  • Support video extension for Veo on Gemini Developer API (341ea77)

Bug Fixes

  • Avoid potential dual import confusion in type assert (9cc4a72)

Documentation

v1.43.0

1.43.0 (2025-10-10)

Features

  • Enable Google Maps tool for Genai. (dc77a1d)
  • Support enableWidget feature in GoogleMaps (1737f72)
  • Support Gemini batch inline request's metadata and add test coverage to safety setting (7dcc969)

Documentation

  • Regenerate updated Python docs (e6989a3)

v1.42.0

1.42.0 (2025-10-08)

... (truncated)

Changelog

Sourced from google-genai's changelog.

1.45.0 (2025-10-15)

Features

  • Add support for Python 3.14. (f0083a2)

Bug Fixes

  • Keys in Live API tool responses are incorrectly re-cased (

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

| Package | From | To |
| --- | --- | --- |
| [zstandard](https://github.com/indygreg/python-zstandard) | `0.24.0` | `0.25.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.11.9` | `2.12.3` |
| [tomli](https://github.com/hukkin/tomli) | `2.2.1` | `2.3.0` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.118.0` | `0.119.1` |
| [together](https://github.com/togethercomputer/together-python) | `1.5.26` | `1.5.27` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.69.0` | `0.71.0` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.183.0` | `2.185.0` |
| [google-genai](https://github.com/googleapis/python-genai) | `1.39.1` | `1.45.0` |
| [mistralai](https://github.com/mistralai/client-python) | `1.6.0` | `1.9.11` |
| [boto3](https://github.com/boto/boto3) | `1.40.42` | `1.40.55` |
| [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` | `0.35.3` |
| [openai](https://github.com/openai/openai-python) | `1.109.1` | `2.6.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 `pydantic` from 2.11.9 to 2.12.3
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.9...v2.12.3)

Updates `tomli` from 2.2.1 to 2.3.0
- [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md)
- [Commits](hukkin/tomli@2.2.1...2.3.0)

Updates `fastapi` from 0.118.0 to 0.119.1
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.118.0...0.119.1)

Updates `together` from 1.5.26 to 1.5.27
- [Release notes](https://github.com/togethercomputer/together-python/releases)
- [Commits](togethercomputer/together-python@v1.5.26...v1.5.27)

Updates `anthropic` from 0.69.0 to 0.71.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.69.0...v0.71.0)

Updates `google-api-python-client` from 2.183.0 to 2.185.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.183.0...v2.185.0)

Updates `google-genai` from 1.39.1 to 1.45.0
- [Release notes](https://github.com/googleapis/python-genai/releases)
- [Changelog](https://github.com/googleapis/python-genai/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-genai@v1.39.1...v1.45.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.42 to 1.40.55
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.40.42...1.40.55)

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 0.35.3
- [Release notes](https://github.com/huggingface/huggingface_hub/releases)
- [Commits](huggingface/huggingface_hub@v0.34.6...v0.35.3)

Updates `openai` from 1.109.1 to 2.6.0
- [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.6.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: pydantic
  dependency-version: 2.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: tomli
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: fastapi
  dependency-version: 0.119.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: together
  dependency-version: 1.5.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: anthropic
  dependency-version: 0.71.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: google-api-python-client
  dependency-version: 2.185.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: google-genai
  dependency-version: 1.45.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.55
  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: 0.35.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: openai
  dependency-version: 2.6.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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Oct 20, 2025
@dependabot dependabot bot requested a review from a team as a code owner October 20, 2025 23:19
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Oct 20, 2025
@dependabot dependabot bot had a problem deploying to Scheduled Testing October 20, 2025 23:19 Failure
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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