Skip to content

Bump the all-python-packages group across 1 directory with 22 updates#529

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

Bump the all-python-packages group across 1 directory with 22 updates#529
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/all-python-packages-97e799510d

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

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

Package From To
accelerate 1.10.1 1.12.0
flwr 1.22.0 1.25.0
pyarrow 21.0.0 23.0.0
pydantic 2.12.0 2.12.5
pydantic-settings 2.11.0 2.12.0
torch 2.8.0 2.9.1
peft 0.17.1 0.18.1
transformers 4.56.2 4.57.6
sentence-transformers 5.1.1 5.2.0
grpcio 1.75.1 1.76.0
llama-index-core 0.14.4 0.14.12
langchain-core 0.3.79 1.2.7
mypy 1.18.2 1.19.1
pre-commit 4.3.0 4.5.1
pylint 4.0.0 4.0.4
pytest 8.4.2 9.0.2
ruff 0.14.0 0.14.13
mkdocs-material 9.6.21 9.7.1

Updates accelerate from 1.10.1 to 1.12.0

Release notes

Sourced from accelerate's releases.

v1.12.0: Deepspeed Ulysses/ALST

Deepspeed Ulysses/ALST integration

Deepspeed Ulysses/ALST is an efficient way of training on long sequences by employing sequence parallelism and attention head parallelism. You can learn more about this technology in this paper https://arxiv.org/abs/2506.13996 or this deepspeed tutorial https://www.deepspeed.ai/tutorials/ulysses-alst-sequence-parallelism/.

To enable Deepspeed Ulysses, you first need to create ParallelismConfig and setting sp related args:

parallelism_config = ParallelismConfig(
    sp_backend="deepspeed",
    sp_size=2,
    sp_handler=DeepSpeedSequenceParallelConfig(...),
)

Then, you need to make sure to compute the correct loss as described on our docs

        ...
        losses_per_rank = torch.distributed.nn.functional.all_gather(loss, group=sp_group)
        good_tokens = (shift_labels != -100).view(-1).sum()
        good_tokens_per_rank = torch.distributed.nn.functional.all_gather(good_tokens, group=sp_group)
        total_loss = sum(
            losses_per_rank[rank] * good_tokens_per_rank[rank]
            for rank in range(sp_world_size)
            if good_tokens_per_rank[rank] > 0
        )
        total_good_tokens = sum(good_tokens_per_rank)
        loss = total_loss / max(total_good_tokens, 1)

Thanks @​S1ro1 for starting this work and for @​stas00 for finishing this work. Also thanks @​kashif for adding docs and reviewing/testing this PR !

This feature will also be available in HF Trainer thanks for this PR from @​stas00: huggingface/transformers#41832

Minor changes

New Contributors

... (truncated)

Commits

Updates datasets from 4.2.0 to 3.1.0

Commits

Updates flwr from 1.22.0 to 1.25.0

Release notes

Sourced from flwr's releases.

Flower 1.25.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):

Chong Shen Ng, Daniel J. Beutel, Heng Pan, Javier, Mohammad Naseri, Soumik Sarker, William Lindskog, Yan Gao, sarahhfalco

What's new?

  • Track compute time and network traffic for runs (#6241, #6242, #6243, #6244, #6245, #6249, #6266, #6267, #6268, #6269, #6270, #6271, #6272, #6273, #6274, #6275, #6276, #6279)

    Flower now records compute time and network traffic for a run. The run detail view shown by flwr list --run-id <run-id> displays traffic exchanged between SuperLink and SuperNode, as well as compute time used by ServerApp and ClientApp.

  • Refactor flwr new to pull apps from the Flower platform (#6251, #6252, #6258, #6259, #6260, #6263, #6265, #6283, #6284, #6285, #6292, #6294, #6302)

    Refactors flwr new to fetch Flower apps directly from the Flower platform (see the usage reference). This introduces new and updated quickstart examples (including NumPy and FlowerTune LLM), renames and updates existing examples, aligns CI to run against platform-backed examples, and updates related documentation and benchmark instructions.

  • Migrate examples to the Message API and remove outdated Docker Compose as well as Tensorflow Privacy examples (#6232, #6233, #6238, #6297, #6304)

    Migrates the scikit-learn, Vertical FL, and Opacus examples to the Message API, with the Vertical FL example also updated to use flwr-datasets. The outdated Docker Compose and Tensorflow Privacy examples are removed.

  • Improve CLI output with human-readable durations (#6277, #6296)

    Updates the Flower CLI to display durations in a more human-friendly format (xd xh xm xs), automatically selecting appropriate units instead of the previous HH:MM:SS format.

  • Update examples and baselines (#6234, #6256, #6257, #6264, #6280, #6281, #6286, #6287, #6288, #6290, #6291, #6293)

  • Improve documentation (#6229, #6230, #6255, #6262)

  • Update CI/CD configuration (#6168, #6246, #6295, #6305)

  • General improvements (#6056, #6085, #6176, #6235, #6236, #6254, #6278, #6299)

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

Incompatible changes

  • Remove bundled templates from flwr new (#6261)

    Removes the templates previously bundled with the Flower wheel now that flwr new pulls apps from the Flower platform. The --framework and --username options are deprecated as part of this change.

Flower 1.24.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, Patrick Foley, Robert Steiner, Yan Gao

What's new?

... (truncated)

Commits
  • a66982d feat(framework): Update changelog for v1.25.0 (#6298)
  • e3d1aa3 Update text and language files (#6306)
  • 7d560bc refactor(examples): Remove tensorflow-privacy example (#6304)
  • 533a511 docs(examples): Update jax tutorial based on the app `@flwrlabs/quickstart-...
  • adc9239 ci(*:skip): Fix heartbeat CI test (#6305)
  • 7156052 Update text and language files (#6303)
  • b3c81d5 docs(framework): Update flwr new steps in the tutorials (#6283)
  • 6cf2800 refactor(examples): Update opacus app (#6297)
  • 547c93e docs(framework): Update flwr new instances in documentation (#6294)
  • a918b51 build(deps): Bump next in /intelligence/ts/examples/nextjs-web-chats (#6300)
  • Additional commits viewable in compare view

Updates pyarrow from 21.0.0 to 23.0.0

Release notes

Sourced from pyarrow's releases.

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
  • eafe3a9 MINOR: [Release] Update versions for 23.0.0
  • 45781e8 MINOR: [Release] Update .deb/.rpm changelogs for 23.0.0
  • 365e5ac MINOR: [Release] Update CHANGELOG.md for 23.0.0
  • e33512d GH-48841: [Release][Package] Add GH_TOKEN to rake build step on Linux Packagi...
  • 86d28e9 GH-48838: [Release] Use gh cli to download sources for Linux packages and pub...
  • b6362d0 GH-48582: [CI][GPU][C++][Python] Add new CUDA jobs using the new self-hosted ...
  • 8fb7a53 GH-48827: [CI][Python] Add required xz dependency to emscripten dockerfile (#...
  • 342c5d5 GH-48809: [CI] Fix homebrew-cpp with Mac by using formula-based dependency re...
  • 8955bbf GH-48631: [R] Non-API calls: 'ATTRIB', 'SET_ATTRIB' (#48634)
  • b90a2b8 GH-48314: [Python] Compat with pandas 3.0 changed default datetime unit (#48319)
  • Additional commits viewable in compare view

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.12.0

Release notes

Sourced from pydantic-settings's releases.

v2.12.0

What's Changed

New Contributors

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

Commits

Updates torch from 2.8.0 to 2.9.1

Release notes

Sourced from torch's releases.

PyTorch 2.9.1 Release, bug fix release

This release is meant to fix the following issues (regressions / silent correctness):

Tracked Regressions

Significant Memory Regression in F.conv3d with bfloat16 Inputs in PyTorch 2.9.0 (#166643) This release provides work around this issue. If you are impacted please install nvidia-cudnn package version 9.15+ from pypi. (#166480) (#167111)

Torch.compile

Fix Inductor bug when compiling Gemma (#165601) Fix InternalTorchDynamoError in bytecode_transformation (#166036) Fix silent correctness error_on_graph_break bug where non-empty checkpoint results in unwanted graph break resumption (#166586) Improve performance by avoiding recompilation with mark_static_address with cudagraphs (#162208) Improve performance by caching get_free_symbol_uses in torch inductor (#166338) Fix fix registration design for inductor graph partition for vLLM (#166458) (#165815) (#165514) Fix warning spamming in torch.compile (#166993) Fix exception related to uninitialized tracer_output variable (#163169) Fix crash in torch.bmm and torch.compile with PyTorch release 2.9.0 (#166457)

Other

Fix warning spamming on new APIs to control TF32 behavior (#166956) Fix distributed crash with non-contiguous gather inputs (#166181) Fix indexing on large tensor causes invalid configuration argument (#166974) Fix numeric issue in CUDNN_ATTENTION (#166912) (#166570) Fix symmetric memory issue with fused_scaled_matmul_reduce_scatter (#165086) Improve libtorch stable ABI documentation (#163899) Fix image display on pypi project description section (#166404)

2.9 Release Notes

PyTorch 2.9.0 Release Notes

Highlights

... (truncated)

Commits

Updates torchvision from 0.23.0 to 0.24.1

Release notes

Sourced from torchvision's releases.

TorchVision 0.24.1 Release

This is a patch release, which is compatible with PyTorch 2.9.1. There are no new features added.

Torchvision 0.24 release

Improving KeyPoints and Rotated boxes support!

We are releasing a tutorial on how to use KeyPoint transformations in our Transforms on KeyPoints with a preview below!

[!NOTE] These features are still in BETA status. The API are unlikely to change, but we may have some rough edges and we may make some slight bug fixes in future releases. Please let us know if you encounter any issue!

Detailed changes

Improvements

[ops] Improve efficiency of the box_area and box_iou functions by eliminating the intermediate to "xyxy" conversion (#8992) [ops] Update box operations to support arbitrary batch dimensions (#9058) [utils] Add control for the background color of label text boxes (#9204) [transforms] Add support for uint8 image format to the GaussianNoise transform (#9169) [transforms] Accelerate the resize transform on machines with AVX512 (#9190) [transforms] Better error handling in RandomApply for empty list of transforms (#9130) [documentation] New tutorial for KeyPoints transforms (#9209) [documentation] Various documentation improvements (#9186, #9180, #9172) [code quality] Various code quality improvements (#9193, #9161, #9201, #9218, #9160)

Bug Fixes and deprecations

[transforms] Fix output of some geometric transforms for rotated boxes (#9181, #9175) [transforms] Fix clamping for key points and add sanitization feature (#9236, #9235) [datasets] Update download links to official repo for the Caltech-101 & 256 datasets (#9205) [ops] Raise error in drop_block[2,3]d by enforcing odd-sized block sizes (#9157) [io] Removed deprecated video_reader video decoding backend. (#9208)

Contributors

🎉 We're grateful for our community, which helps us improve Torchvision by submitting issues and PRs, and providing feedback and suggestions. The following persons have contributed patches for this release: @​alperenunlu, @​AndreiMoraru123, @​atalman, @​AntoineSimoulin, @​5had3z, @​dcasbol, @​GdoongMathew, @​hrsvrn, @​JonasKlotz, @​zklaus, @​NicolasHug, @​rdong8, @​scotts, @​get9, @​diaz-esparza, @​ZainRizvi, @​Callidior, and @​pytorch/xla-devs

Commits

Updates peft from 0.17.1 to 0.18.1

Release notes

Sourced from peft's releases.

0.18.1

Small patch release containing the following changes:

  • #2934: Small fixes required for some special cases to work with the upcoming transformers v5 release
  • #2963: Fix to enable PEFT to run with AMD ROCm thanks to @​vladmandic
  • #2976: Fix a regression that inadvertently required transformers >= 4.52

0.18.0: RoAd, ALoRA, Arrow, WaveFT, DeLoRA, OSF, and more

Highlights

FIXME update list of all changes, so some more commits were added

New Methods

RoAd

@​ppetrushkov added RoAd: 2D Rotary Adaptation to PEFT in #2678. RoAd learns 2D rotation matrices that are applied using only element-wise multiplication, thus promising very fast inference with adapters in unmerged state.

Remarkably, besides LoRA, RoAd is the only PEFT method that supports mixed adapter batches. This means that when you have loaded a model with multiple RoAd adapters, you can use all of them for different samples in the same batch, which is much more efficient than switching adapters between batches:

model = PeftModel.from_pretrained(base_model, <path-to-road-adapter-A>, adapter_name="adapter-A")
model.add_adapter("adapter-B", <path-to-road-adapter-B>)
inputs = ...  # input with 3 samples
apply adapter A to sample 0, adapter B to sample 1, and use the base model for sample 2:
adapter_names = ["adapter-A", "adapter-B", "base"]
output_mixed = model(**inputs, adapter_names=adapter_names)
gen_mixed = model.generate(**inputs, adapter_names=adapter_names)

ALoRA

Activated LoRA is a technique added by @​kgreenewald in #2609 for causal language models, allowing to selectively enable LoRA adapters depending on a specific token invocation sequence in the input. This has the major benefit of being able to re-use most of the KV cache during inference when the adapter is only used to generate part of the response, after which the base model takes over again.

Arrow & GenKnowSub

@​TheTahaaa contributed not only support for Arrow, a dynamic routing algorithm between multiple loaded LoRAs in #2644, but also GenKnowSub, a technique built upon Arrow where the 'library' of LoRAs available to Arrow is first modified by subtracting general knowledge adapters (e.g., trained on subsets of Wikipedia) to enhance task-specific performance.

WaveFT

Thanks to @​Bilican, Wavelet Fine-Tuning (WaveFT) was added to PEFT in #2560. This method trains sparse updates in the wavelet domain of residual matrices, which is especially parameter efficient. It is very interesting for image generation, as it promises to generate diverse outputs while preserving subject fidelity.

DeLoRA

Decoupled Low-rank Adaptation (DeLoRA) was added by @​mwbini in #2780. This new PEFT method is similar to DoRA in so far as it decouples the angle and magnitude of the learned adapter weights. However, DeLoRA implements this in a way that promises to better prevent divergence. Moreover, it constrains the deviation of the learned weight by imposing an upper limit of the norm, which can be adjusted via the delora_lambda parameter.

OSF

... (truncated)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [accelerate](https://github.com/huggingface/accelerate) | `1.10.1` | `1.12.0` |
| [flwr](https://github.com/adap/flower) | `1.22.0` | `1.25.0` |
| [pyarrow](https://github.com/apache/arrow) | `21.0.0` | `23.0.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.12.0` | `2.12.5` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.11.0` | `2.12.0` |
| [torch](https://github.com/pytorch/pytorch) | `2.8.0` | `2.9.1` |
| [peft](https://github.com/huggingface/peft) | `0.17.1` | `0.18.1` |
| [transformers](https://github.com/huggingface/transformers) | `4.56.2` | `4.57.6` |
| [sentence-transformers](https://github.com/huggingface/sentence-transformers) | `5.1.1` | `5.2.0` |
| [grpcio](https://github.com/grpc/grpc) | `1.75.1` | `1.76.0` |
| [llama-index-core](https://github.com/run-llama/llama_index) | `0.14.4` | `0.14.12` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `0.3.79` | `1.2.7` |
| [mypy](https://github.com/python/mypy) | `1.18.2` | `1.19.1` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.3.0` | `4.5.1` |
| [pylint](https://github.com/pylint-dev/pylint) | `4.0.0` | `4.0.4` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.4.2` | `9.0.2` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.0` | `0.14.13` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.21` | `9.7.1` |



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

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

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

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

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.12.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.11.0...v2.12.0)

Updates `torch` from 2.8.0 to 2.9.1
- [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.9.1)

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

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 4.57.6
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.56.2...v4.57.6)

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

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

Updates `llama-index-core` from 0.14.4 to 0.14.12
- [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.12)

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

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

Updates `mypy` from 1.18.2 to 1.19.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.18.2...v1.19.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.4
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v4.0.0...v4.0.4)

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 `ruff` from 0.14.0 to 0.14.13
- [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.14.13)

Updates `mkdocs-material` from 9.6.21 to 9.7.1
- [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.1)

---
updated-dependencies:
- dependency-name: accelerate
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: datasets
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: flwr
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: pyarrow
  dependency-version: 23.0.0
  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.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: torch
  dependency-version: 2.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: torchvision
  dependency-version: 0.24.1
  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: 4.57.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: sentence-transformers
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
- dependency-name: grpcio
  dependency-version: 1.76.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.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-packages
- dependency-name: langchain-core
  dependency-version: 1.2.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: unsloth
  dependency-version: '2024.8'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-python-packages
- dependency-name: mypy
  dependency-version: 1.19.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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.4
  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: ruff
  dependency-version: 0.14.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-python-packages
- dependency-name: mkdocs-material
  dependency-version: 9.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jan 19, 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