Skip to content

Bump the all-python-packages group across 1 directory with 26 updates#539

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/all-python-packages-b15c9811b5
Open

Bump the all-python-packages group across 1 directory with 26 updates#539
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/all-python-packages-b15c9811b5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 6, 2026

Bumps the all-python-packages group with 20 updates in the / directory:

Package From To
accelerate 1.10.1 1.13.0
datasets 4.2.0 4.8.4
flwr 1.22.0 1.28.0
pyarrow 21.0.0 23.0.1
pydantic 2.12.0 2.12.5
pydantic-settings 2.11.0 2.13.1
torch 2.8.0 2.11.0
peft 0.17.1 0.18.1
transformers 4.56.2 5.5.0
grpcio 1.75.1 1.80.0
llama-index-core 0.14.4 0.14.20
langchain-core 0.3.79 1.2.26
codespell 2.4.1 2.4.2
ipykernel 6.30.1 7.2.0
isort 7.0.0 8.0.1
pre-commit 4.3.0 4.5.1
pytest 8.4.2 9.0.2
pytest-cov 7.0.0 7.1.0
ruff 0.14.0 0.15.9
mkdocs-material 9.6.21 9.7.6

Updates accelerate from 1.10.1 to 1.13.0

Release notes

Sourced from accelerate's releases.

v1.13.0: Neuron support, IPEX removal, and distributed training fixes

AWS Neuron support

We now have support for AWS Neuron (Trainium/Inferentia) devices. Thanks @​michaelbenayoun for adding this.

XPU Improvements

We've removed IPEX dependency and improved device-agnostic code for XPU.

FSDP2 Improvements

We've added a bunch of important fixes for FSDP2 users: upcasting only grad-requiring params, better tied embedding errors, DCP optimizer loading, bf16 optimizer step crash fix, and torch < 2.7.0 compatibility.

DeepSpeed Sequence Parallelism

We've added several fixes to the DeepSpeed + Sequence Parallelism integration introduced in v1.12.0, including evaluation support during SP training and proper process group handling.

FP8

We've enhanced FP8 training. Thanks @​shimizust for fixing torchao support.

Performance

Accelerate now imports faster by deferring heavy dependencies, and torch.compile hooks are disabled lazily.

Minor fixes

... (truncated)

Commits

Updates datasets from 4.2.0 to 4.8.4

Release notes

Sourced from datasets's releases.

4.8.4

What's Changed

Full Changelog: huggingface/datasets@4.8.3...4.8.4

4.8.3

What's Changed

Full Changelog: huggingface/datasets@4.8.2...4.8.3

4.8.2

What's Changed

Full Changelog: huggingface/datasets@4.8.1...4.8.2

4.8.1

What's Changed

Full Changelog: huggingface/datasets@4.8.0...4.8.1

4.8.0

Dataset Features

  • Read (and write) from HF Storage Buckets: load raw data, process and save to Dataset Repos by @​lhoestq in huggingface/datasets#8064

    from datasets import load_dataset
    # load raw data from a Storage Bucket on HF
    ds = load_dataset("buckets/username/data-bucket", data_files=["*.jsonl"])
    # or manually, using hf:// paths
    ds = load_dataset("json", data_files=["hf://buckets/username/data-bucket/*.jsonl"])
    # process, filter
    ds = ds.map(...).filter(...)
    # publish the AI-ready dataset
    ds.push_to_hub("username/my-dataset-ready-for-training")

    This also fixes multiprocessed push_to_hub on macos that was causing segfault (now it uses spawn instead of fork). And it bumps dill and multiprocess versions to support python 3.14

  • Datasets streaming iterable packaged improvements and fixes by @​Michael-RDev in huggingface/datasets#8068

    • added max_shard_size to IterableDataset.push_to_hub (but requires iterating twice to know the full dataset twice - improvements are welcome)

... (truncated)

Commits

Updates flwr from 1.22.0 to 1.28.0

Release notes

Sourced from flwr's releases.

Flower 1.28.0

Thanks to our contributors

We would like to give our special thanks to all the contributors who made the new version of Flower possible (in git shortlog order):

Charles Beauville, Chong Shen Ng, Daniel J. Beutel, Daniel Nata Nugraha, Heng Pan, Javier, Julian Rußmeyer, Micah Sheller, Mohammad Naseri, Patrick Foley, Taner Topal, William Lindskog, Yan Gao, xiaoyanshen799

What's new?

  • Introduce federation-based simulation configuration and management (#6787, #6790, #6791, #6806, #6813, #6820, #6821, #6826, #6829, #6837, #6846, #6848, #6857, #6858, #6859, #6860, #6861, #6865, #6867, #6882, #6883, #6888, #6895, #6907, #6934)

    Introduces simulation-capable federations and a mechanism to configure the Simulation Runtime that these federations use in both a persistent manner and with per-run overrides. For the former, the flwr federation simulation-config command is introduced; for the latter --federation-config can be used to dynamically override values at when submitting a run via flwr run. Updates documentation and provides a migration guide here. Refer to the updated Simulation Runtime guide for more details about running simulations with Flower.

  • Improve local SuperLink stability and configuration handling (#6797, #6873, #6874, #6889)

    Improves local SuperLink stability by improving SQLite bootstrap robustness and validating Control API availability before executing CLI calls. Allows magic values (":local:", ":local-in-memory:") for address fields in Flower configuration, which will be translated to the local SuperLink address. Ensures backward compatibility for .options-only connection configurations. Using .options fields in the Flower configuration (config.toml) is now deprecated. See Flower configuration guide for more details.

  • Add configurable FAB inclusion and exclusion rules (#6803, #6804, #6805, #6822, #6823, #6872, #6885)

    Introduces support for user-defined include and exclude patterns in FAB builds via configuration, with validation of pattern lists and extended matching capabilities. Ensures publish filters are applied before FAB build filters, standardizes metadata keys in pyproject.toml, and refactors supporting utilities. Updates documentation with guide on configuring inclusion and exclusion rules.

  • Introduce FAB format v1 validation rules and requirements (#6782, #6825, #6843, #6851, #6887)

    Introduces validation rules for FAB format version 1, requiring flwr-version-target to be specified and enforcing a lower bound for the flwr dependency in pyproject.toml. Adds license file requirements during FAB build.

  • Add non-blocking version update checks across Flower components (#6786, #6788, #6833, #6938)

    Adds non-blocking startup checks in the Flower CLI to detect newer versions of flwr in CLI. Allows disabling by setting environment variable FLWR_DISABLE_UPDATE_CHECK=1.

  • Support port 0 for automatic OS-assigned ports (#6795)

  • Add --version flag to Flower CLI components (#6781)

  • Add dynamic data seed option to FlowerTune LLM examples (#6831)

  • Add flwr federation remove-account command for managing federation membership (#6757, #6759, #6764, #6772, #6777, #6778, #6789)

  • Improve availability and reliability of message delivery and state handling (#6773, #6785, #6877, #6915)

  • Fix handling of scalar (0D) NumPy arrays in strategies and mods (#6783)

  • Improve documentation (#6332, #6742, #6771, #6834, #6838, #6910, #6929, #6941)

  • Improve CI/CD workflows and developer tooling (#6701, #6732, #6738, #6739, #6743, #6744, #6753, #6768, #6769, #6770, #6775, #6793, #6816, #6835)

  • General improvements (#6578, #6627, #6734, #6740, #6748, #6749, #6751, #6755, #6763, #6774, #6776, #6779, #6800, #6801, #6802, #6811, #6815, #6827, #6828, #6839, #6840, #6841, #6842, #6868, #6869, #6893, #6900, #6901, #6906, #6908, #6909, #6918, #6919, #6920, #6921, #6922, #6923, #6930, #6932)

    As always, many parts of the Flower framework and quality infrastructure were improved and updated.

Incompatible changes

... (truncated)

Commits
  • 830759c feat(framework): Update Changelog for v1.28.0 release (#6905)
  • 1d0ff79 docs(framework): Mention Flower CLI setup for TLS in node authentication g...
  • 6312126 fix(framework): Perform update check before argparse (#6938)
  • 8f3472a refactor(framework): Ensure at least one option is passed to `flwr federation...
  • 48d3bc7 feat(baselines): Update Baselines Docs DR26 (#6578)
  • 8fd51ab refactor(framework): Add timeout to ServerApp thread in Simulation Runtime ...
  • 11b8fb2 refactor(framework): Avoid telemetry blocking (#6922)
  • 03d918b fix(framework): Call usage report on row change in _on_tokens_expire (#6923)
  • 72f17df refactor(framework): Improve error message when max directory depth is reache...
  • 38ae4b7 docs(framework:skip): Update source texts for translations (auto) (#6929)
  • Additional commits viewable in compare view

Updates pyarrow from 21.0.0 to 23.0.1

Release notes

Sourced from pyarrow's releases.

Apache Arrow 23.0.1

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

Apache Arrow 23.0.1 RC0

Release Notes: Release Candidate: 23.0.1 RC0

Apache Arrow 23.0.0

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

Apache Arrow 23.0.0 RC2

Release Notes: Release Candidate: 23.0.0 RC2

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 pydantic from 2.12.0 to 2.12.5

Release notes

Sourced from pydantic's releases.

v2.12.5 2025-11-26

v2.12.5 (2025-11-26)

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #12522.
  • Several updates to the documentation by @​Viicos.

Full Changelog: pydantic/pydantic@v2.12.4...v2.12.5

v2.12.4 2025-11-05

v2.12.4 (2025-11-05)

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that should be used in most cases in place of serialize as any.

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

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.

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.12.5 (2025-11-26)

GitHub release

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #12522.
  • Several updates to the documentation by @​Viicos.

v2.12.4 (2025-11-05)

GitHub release

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that should be used in most cases in place of serialize as any.

v2.12.3 (2025-10-17)

GitHub release

... (truncated)

Commits
  • bd2d0dd Prepare release v2.12.5
  • 7d0302e Document security implications when using create_model()
  • e9ef980 Fix typo in Standard Library Types documentation
  • f2c20c0 Add pydantic-docs dev dependency, make use of versioning blocks
  • a76c1aa Update documentation about JSON Schema
  • 8cbc72c Add documentation about custom __init__()
  • 99eba59 Add additional test for FieldInfo.get_default()
  • c710769 Special case MISSING sentinel in smart_deepcopy()
  • 20a9d77 Do not delete mock validator/serializer in rebuild_dataclass()
  • c86515a Update parts of the model and revalidate_instances documentation
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.11.0 to 2.13.1

Release notes

Sourced from pydantic-settings's releases.

v2.13.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.12.0...v2.13.0

v2.12.0

What's Changed

... (truncated)

Commits

Updates torch from 2.8.0 to 2.11.0

Release notes

Sourced from torch's releases.

PyTorch 2.11.0 Release Notes

Bumps the all-python-packages group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [accelerate](https://github.com/huggingface/accelerate) | `1.10.1` | `1.13.0` |
| [datasets](https://github.com/huggingface/datasets) | `4.2.0` | `4.8.4` |
| [flwr](https://github.com/flwrlabs/flower) | `1.22.0` | `1.28.0` |
| [pyarrow](https://github.com/apache/arrow) | `21.0.0` | `23.0.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.12.0` | `2.12.5` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.11.0` | `2.13.1` |
| [torch](https://github.com/pytorch/pytorch) | `2.8.0` | `2.11.0` |
| [peft](https://github.com/huggingface/peft) | `0.17.1` | `0.18.1` |
| [transformers](https://github.com/huggingface/transformers) | `4.56.2` | `5.5.0` |
| [grpcio](https://github.com/grpc/grpc) | `1.75.1` | `1.80.0` |
| [llama-index-core](https://github.com/run-llama/llama_index) | `0.14.4` | `0.14.20` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `0.3.79` | `1.2.26` |
| [codespell](https://github.com/codespell-project/codespell) | `2.4.1` | `2.4.2` |
| [ipykernel](https://github.com/ipython/ipykernel) | `6.30.1` | `7.2.0` |
| [isort](https://github.com/PyCQA/isort) | `7.0.0` | `8.0.1` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.3.0` | `4.5.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.4.2` | `9.0.2` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `7.0.0` | `7.1.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.0` | `0.15.9` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.21` | `9.7.6` |



Updates `accelerate` from 1.10.1 to 1.13.0
- [Release notes](https://github.com/huggingface/accelerate/releases)
- [Commits](huggingface/accelerate@v1.10.1...v1.13.0)

Updates `datasets` from 4.2.0 to 4.8.4
- [Release notes](https://github.com/huggingface/datasets/releases)
- [Commits](huggingface/datasets@4.2.0...4.8.4)

Updates `flwr` from 1.22.0 to 1.28.0
- [Release notes](https://github.com/flwrlabs/flower/releases)
- [Changelog](https://github.com/flwrlabs/flower/blob/main/CHANGELOG.md)
- [Commits](flwrlabs/flower@v1.22.0...framework-1.28.0)

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

Updates `pydantic` from 2.12.0 to 2.12.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.12.0...v2.12.5)

Updates `pydantic-settings` from 2.11.0 to 2.13.1
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.11.0...v2.13.1)

Updates `torch` from 2.8.0 to 2.11.0
- [Release notes](https://github.com/pytorch/pytorch/releases)
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md)
- [Commits](pytorch/pytorch@v2.8.0...v2.11.0)

Updates `torchvision` from 0.23.0 to 0.26.0
- [Release notes](https://github.com/pytorch/vision/releases)
- [Commits](pytorch/vision@0.23.0...v0.26.0)

Updates `peft` from 0.17.1 to 0.18.1
- [Release notes](https://github.com/huggingface/peft/releases)
- [Commits](huggingface/peft@v0.17.1...v0.18.1)

Updates `transformers` from 4.56.2 to 5.5.0
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.56.2...v5.5.0)

Updates `sentence-transformers` from 5.1.1 to 5.3.0
- [Release notes](https://github.com/huggingface/sentence-transformers/releases)
- [Commits](huggingface/sentence-transformers@v5.1.1...v5.3.0)

Updates `grpcio` from 1.75.1 to 1.80.0
- [Release notes](https://github.com/grpc/grpc/releases)
- [Commits](grpc/grpc@v1.75.1...v1.80.0)

Updates `llama-index-core` from 0.14.4 to 0.14.20
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.14.4...v0.14.20)

Updates `langchain-core` from 0.3.79 to 1.2.26
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-core==0.3.79...langchain-core==1.2.26)

Updates `unsloth` from 2025.10.1 to 2026.4.2
- [Release notes](https://github.com/unslothai/unsloth/releases)
- [Commits](https://github.com/unslothai/unsloth/commits)

Updates `codespell` from 2.4.1 to 2.4.2
- [Release notes](https://github.com/codespell-project/codespell/releases)
- [Commits](codespell-project/codespell@v2.4.1...v2.4.2)

Updates `ipykernel` from 6.30.1 to 7.2.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/main/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.30.1...v7.2.0)

Updates `isort` from 7.0.0 to 8.0.1
- [Release notes](https://github.com/PyCQA/isort/releases)
- [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md)
- [Commits](PyCQA/isort@7.0.0...8.0.1)

Updates `pre-commit` from 4.3.0 to 4.5.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.3.0...v4.5.1)

Updates `pylint` from 4.0.0 to 4.0.5
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v4.0.0...v4.0.5)

Updates `pytest` from 8.4.2 to 9.0.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.2...9.0.2)

Updates `pytest-asyncio` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.2.0...v1.3.0)

Updates `pytest-cov` from 7.0.0 to 7.1.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v7.0.0...v7.1.0)

Updates `ruff` from 0.14.0 to 0.15.9
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.14.0...0.15.9)

Updates `mkdocs-jupyter` from 0.25.1 to 0.26.1
- [Changelog](https://github.com/danielfrg/mkdocs-jupyter/blob/main/CHANGELOG.md)
- [Commits](danielfrg/mkdocs-jupyter@0.25.1...0.26.1)

Updates `mkdocs-material` from 9.6.21 to 9.7.6
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.6.21...9.7.6)

---
updated-dependencies:
- dependency-name: accelerate
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: datasets
  dependency-version: 4.8.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: flwr
  dependency-version: 1.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: pyarrow
  dependency-version: 23.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: pydantic
  dependency-version: 2.12.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-packages
- dependency-name: pydantic-settings
  dependency-version: 2.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: torch
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: torchvision
  dependency-version: 0.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: peft
  dependency-version: 0.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: transformers
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: sentence-transformers
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: grpcio
  dependency-version: 1.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: llama-index-core
  dependency-version: 0.14.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-packages
- dependency-name: langchain-core
  dependency-version: 1.2.26
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: unsloth
  dependency-version: 2026.4.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: codespell
  dependency-version: 2.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-python-packages
- dependency-name: ipykernel
  dependency-version: 7.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: isort
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: pre-commit
  dependency-version: 4.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: pylint
  dependency-version: 4.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-python-packages
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: pytest-asyncio
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: pytest-cov
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: ruff
  dependency-version: 0.15.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: mkdocs-jupyter
  dependency-version: 0.26.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: mkdocs-material
  dependency-version: 9.7.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Apr 6, 2026
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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants