Skip to content

Bump the python-dependencies group across 1 directory with 26 updates#56

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/uv/python-dependencies-56db402fb7
Open

Bump the python-dependencies group across 1 directory with 26 updates#56
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/uv/python-dependencies-56db402fb7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the python-dependencies group with 25 updates in the / directory:

Package From To
fastapi 0.115.6 0.135.2
gdown 5.2.0 5.2.1
pathspec 0.12.1 1.0.4
torch 2.9.1 2.11.0
typer 0.15.1 0.24.1
uvicorn[standard] 0.34.0 0.42.0
wandb 0.23.1 0.25.1
pytorch-lightning 2.6.0 2.6.1
google-api-python-client 2.187.0 2.193.0
requests 2.32.5 2.33.1
python-multipart 0.0.21 0.0.22
opencv-python 4.12.0.88 4.13.0.92
locust 2.43.1 2.43.3
evidently 0.7.20 0.7.21
pandas 2.3.3 3.0.2
coverage 7.6.9 7.13.5
invoke 2.2.0 2.2.1
mkdocs-material 9.4.6 9.7.6
pre-commit 4.1.0 4.5.1
pytest 8.3.4 9.0.2
mkdocstrings-python 1.12.2 2.0.3
mypy 1.19.1 1.20.0
ruff 0.14.10 0.15.8
ty 0.0.9 0.0.27
tensorboard-plugin-profile 2.21.3 2.22.0

Updates fastapi from 0.115.6 to 0.135.2

Release notes

Sourced from fastapi's releases.

0.135.2

Upgrades

  • ⬆️ Increase lower bound to pydantic >=2.9.0. and fix the test suite. PR #15139 by @​svlandeg.

Docs

Translations

Internal

... (truncated)

Commits
  • 25a3697 🔖 Release version 0.135.2
  • ab125da 📝 Update release notes
  • 122b6d4 📝 Add missing last release notes dates (#15202)
  • 68ac0ab 📝 Update release notes
  • ea6e287 📝 Update docs for contributors and team members regarding translation PRs (#1...
  • d0a6f20 📝 Update release notes
  • fd9e192 💄 Fix code blocks in reference docs overflowing table width (#15094)
  • fce9460 📝 Update release notes
  • 0227991 🔨 Exclude spam comments from statistics in scripts/people.py (#15088)
  • cbd64b0 📝 Update release notes
  • Additional commits viewable in compare view

Updates gdown from 5.2.0 to 5.2.1

Release notes

Sourced from gdown's releases.

v5.2.1

Fixes

  • cached_download: Verify file hash before moving to final location instead of after (wkentaro/gdown#417)
    • Previously, the hash was verified after moving to the final path, which could leave corrupted files in place if hash verification failed
  • download: Fix speed limit throttling logic to use independent byte counter instead of pbar.n (wkentaro/gdown#407)
    • The speed limiter now correctly tracks downloaded bytes independently from the progress bar
    • Also fixes unnecessary sleep when resuming downloads with speed limit (since pbar.n includes start_size from resumed downloads)

Chores

  • Fix missing space in --output help text (wkentaro/gdown#398)
  • Fix concatenated string literal in extractall.py error message
Commits
  • 7f4cb68 Merge pull request #417 from wkentaro/fix_cached_download_verify_file_hash_be...
  • 9697a53 fix(cached_download): verify file hash before moving to final location
  • c7c1b9d Merge pull request #407 from wkentaro/fix_speed_limit
  • 940bd40 Fix throttling logic to use independent byte counter instead of pbar.n
  • a55ce67 Fix unnecessary sleep when resuming downloads with speed limit
  • c3c8102 Merge pull request #398 from hmaarrfk/lint
  • a095aaa chore: add missing space for help of --output
  • 10e8c85 lint other files
  • See full diff in compare view

Updates pathspec from 0.12.1 to 1.0.4

Release notes

Sourced from pathspec's releases.

v1.0.4

Release v1.0.4. See CHANGES.rst.

v1.0.3

Release v1.0.3. See CHANGES.rst.

v1.0.2

Release v1.0.2. See CHANGES.rst.

v1.0.1

Release v1.0.1. See CHANGES.rst.

v1.0.0

Release v1.0.0. See CHANGES.rst.

Changelog

Sourced from pathspec's changelog.

1.0.4 (2026-01-26)

  • Issue [#103](https://github.com/cpburnz/python-pathspec/issues/103)_: Using re2 fails if pyre2 is also installed.

.. _Issue [#103](https://github.com/cpburnz/python-pathspec/issues/103): cpburnz/python-pathspec#103

1.0.3 (2026-01-09)

Bug fixes:

  • Issue [#101](https://github.com/cpburnz/python-pathspec/issues/101)_: pyright strict errors with pathspec >= 1.0.0.
  • Issue [#102](https://github.com/cpburnz/python-pathspec/issues/102)_: No module named 'tomllib'.

.. _Issue [#101](https://github.com/cpburnz/python-pathspec/issues/101): cpburnz/python-pathspec#101 .. _Issue [#102](https://github.com/cpburnz/python-pathspec/issues/102): cpburnz/python-pathspec#102

1.0.2 (2026-01-07)

Bug fixes:

  • Type hint collections.abc.Callable does not properly replace typing.Callable until Python 3.9.2.

1.0.1 (2026-01-06)

Bug fixes:

  • Issue [#100](https://github.com/cpburnz/python-pathspec/issues/100)_: ValueError(f"{patterns=!r} cannot be empty.") when using black.

.. _Issue [#100](https://github.com/cpburnz/python-pathspec/issues/100): cpburnz/python-pathspec#100

1.0.0 (2026-01-05)

Major changes:

  • Issue [#91](https://github.com/cpburnz/python-pathspec/issues/91)_: Dropped support of EoL Python 3.8.
  • Added concept of backends to allow for faster regular expression matching. The backend can be controlled using the backend argument to PathSpec(), PathSpec.from_lines(), GitIgnoreSpec(), and GitIgnoreSpec.from_lines().
  • Renamed "gitwildmatch" pattern back to "gitignore". The "gitignore" pattern behaves slightly differently when used with PathSpec (gitignore as documented) than with GitIgnoreSpec (replicates Git's edge cases).

API changes:

... (truncated)

Commits

Updates torch from 2.9.1 to 2.11.0

Release notes

Sourced from torch's releases.

PyTorch 2.11.0 Release Notes

Highlights

For more details about these highlighted features, you can look at the release blogpost. Below are the full release notes for this release.

Backwards Incompatible Changes

Release Engineering

... (truncated)

Commits
  • 70d99e9 [release only] Increase timeout for rocm libtorch and manywheel builds (#178006)
  • 3e05c5a [MPS] Properly handle conjugated tensors in bmm (#178010)
  • db741c7 [MPS] fix compiling of SDPA producing nan results (#178009)
  • 483b55d Update pytorch_sphinx_theme2 version to 0.4.6 (#177616)
  • 7f2cdeb [windows][smoke test] Add an option to install cuda if required cuda/cudnn on...
  • 76fd078 [release-only] Fix libtorch builds. Fix lint (#177299)
  • fa384de [Inductor][MPS] Fix half-precision type mismatches in Metal shader codegen (#...
  • 036b25f Let stable::from_blob accept a lambda as deleter (cherry-pick) (#176440)
  • 41f8e3e [CI] Stop using G3 runners (#177161)
  • e2fa295 [CD] Unpin cuda-bindings dependencies (#177159)
  • Additional commits viewable in compare view

Updates typer from 0.15.1 to 0.24.1

Release notes

Sourced from typer's releases.

0.24.1

Internal

0.24.0

Breaking Changes

0.23.1

Fixes

  • 🐛 Fix TYPER_USE_RICH parsing to allow disabling Rich completely. PR #1539 by @​bckohan.

Docs

  • 📝 Remove documentation pages that reference using Click directly. PR #1538 by @​svlandeg.

Internal

0.23.0

Breaking Changes

  • ♻️ When printing error tracebacks with Rich, default to not showing locals, which are sometimes verbose. PR #1072 by @​tiangolo.

Docs

  • 📝 Add more explicit deprecation note in shell packages. PR #1534 by @​tiangolo.

Internal

0.22.0

... (truncated)

Changelog

Sourced from typer's changelog.

0.24.1

Internal

0.24.0

Breaking Changes

0.23.2

Features

  • ✅ Monkeypatch console width to allow running pytest directly. PR #1542 by @​SwaatiR.

Internal

0.23.1

Fixes

  • 🐛 Fix TYPER_USE_RICH parsing to allow disabling Rich completely. PR #1539 by @​bckohan.

Docs

  • 📝 Remove documentation pages that reference using Click directly. PR #1538 by @​svlandeg.

Internal

0.23.0

... (truncated)

Commits
  • eaec8fa 🔖 Release version 0.24.1
  • c73cc2b 📝 Update release notes
  • 6c6259c 👷 Fix CI, do not attempt to build typer-slim, nor typer-cli (#1569)
  • bc65ad8 📝 Update release notes
  • 3aedc0a ➖ Drop support for typer-slim and typer-cli, no more versions will be rel...
  • 4b13020 📝 Update release notes
  • 19aaf0b ⬆ Bump rich from 14.3.2 to 14.3.3 (#1565)
  • 0ece295 📝 Update release notes
  • 833c005 📝 Update release notes
  • 64c0dcb ⬆ Bump pydantic-settings from 2.13.0 to 2.13.1 (#1566)
  • Additional commits viewable in compare view

Updates uvicorn[standard] from 0.34.0 to 0.42.0

Release notes

Sourced from uvicorn[standard]'s releases.

Version 0.42.0

Changed

  • Use bytearray for request body accumulation to avoid O(n^2) allocation on fragmented bodies (#2845)

Fixed

  • Escape brackets and backslash in httptools HEADER_RE regex (#2824)
  • Fix multiple issues in websockets sans-io implementation (#2825)

New Contributors


Full Changelog: Kludex/uvicorn@0.41.0...0.42.0

Version 0.41.0

Added

  • Add --limit-max-requests-jitter to stagger worker restarts (#2707)
  • Add socket path to scope["server"] (#2561)

Changed

  • Rename LifespanOn.error_occured to error_occurred (#2776)

Fixed

  • Ignore permission denied errors in watchfiles reloader (#2817)
  • Ensure lifespan shutdown runs when should_exit is set during startup (#2812)
  • Reduce the log level of 'request limit exceeded' messages (#2788)

New Contributors


Full Changelog: Kludex/uvicorn@0.40.0...0.41.0

Version 0.40.0

What's Changed

... (truncated)

Changelog

Sourced from uvicorn[standard]'s changelog.

0.42.0 (March 16, 2026)

Changed

  • Use bytearray for request body accumulation to avoid O(n^2) allocation on fragmented bodies (#2845)

Fixed

  • Escape brackets and backslash in httptools HEADER_RE regex (#2824)
  • Fix multiple issues in websockets sans-io implementation (#2825)

0.41.0 (February 16, 2026)

Added

  • Add --limit-max-requests-jitter to stagger worker restarts (#2707)
  • Add socket path to scope["server"] (#2561)

Changed

  • Rename LifespanOn.error_occured to error_occurred (#2776)

Fixed

  • Ignore permission denied errors in watchfiles reloader (#2817)
  • Ensure lifespan shutdown runs when should_exit is set during startup (#2812)
  • Reduce the log level of 'request limit exceeded' messages (#2788)

0.40.0 (December 21, 2025)

Remove

  • Drop support for Python 3.9 (#2772)

0.39.0 (December 21, 2025)

Fixed

  • Send close frame on ASGI return for WebSockets (#2769)
  • Explicitly start ASGI run with empty context (#2742)

0.38.0 (October 18, 2025)

Added

  • Support Python 3.14 (#2723)

0.37.0 (September 23, 2025)

Added

... (truncated)

Commits
  • 02bed6f Version 0.42.0 (#2852)
  • d8f2501 chore: pre-create Config objects in benchmarks to measure protocol hot paths ...
  • 9dbb783 Add WebSocket protocol benchmarks for wsproto and websockets-sansio (#2849)
  • b3c69da Use bytearray for request body accumulation (#2845)
  • 3f3ebee Disable pytest-xdist for CodSpeed benchmark runs (#2847)
  • d072de7 Add fragmented body benchmark for chunked body accumulation (#2846)
  • e300c2c Add CodSpeed benchmark suite for HTTP protocol hot paths (#2844)
  • 1fa6976 Escape brackets and backslash in httptools HEADER_RE regex (#2824)
  • 59ec1de Fix multiple issues in websockets sansio implementation (#2825)
  • 2fc0efc Clarify Windows asyncio event loop selection in docs (#2843)
  • Additional commits viewable in compare view

Updates wandb from 0.23.1 to 0.25.1

Release notes

Sourced from wandb's releases.

v0.25.1

What's Changed

Added

Fixed

v0.25.0

What's Changed

Notable Changes

This version drops support for Python 3.8.

Added

Changed

Fixed

v0.24.2

What's Changed

Added

... (truncated)

Changelog

Sourced from wandb's changelog.

[0.25.1] - 2026-03-10

Added

Fixed

[0.25.0] - 2026-02-12

Notable Changes

This version drops support for Python 3.8.

Added

Changed

Fixed

[0.24.2] - 2026-02-04

Added

Fixed

... (truncated)

Commits
  • f35ff86 Bump version and update CHANGELOG for release 0.25.1
  • db0c863 chore: use json_util in object3d to speed up serialization when using orjson ...
  • 9b5eb64 chore: update Python requirements (#11380)
  • aa464b2 chore: bump charm.land/bubbletea/v2 from 2.0.1 to 2.0.2 in /core (#11475)
  • 8c34050 chore: bump charm.land/lipgloss/v2 from 2.0.0 to 2.0.1 in /core (#11474)
  • e0cca89 chore: bump google.golang.org/api from 0.269.0 to 0.270.0 in /core (#11473)
  • b8115c9 chore: bump github.com/mattn/go-runewidth from 0.0.20 to 0.0.21 in /core (#11...
  • 4466ad0 chore: prevent test_wb_logging_last_resort from breaking due to warnings (#11...
  • d134e4b chore: bump golang.org/x/sync from 0.19.0 to 0.20.0 in /core (#11466)
  • 9f0a9fc chore: bump golang.org/x/time from 0.14.0 to 0.15.0 in /core (#11465)
  • Additional commits viewable in compare view

Updates pytorch-lightning from 2.6.0 to 2.6.1

Release notes

Sourced from pytorch-lightning's releases.

Lightning v2.6.1

Changes in 2.6.1

PyTorch Lightning

  • Added method chaining support to LightningModule.freeze() and LightningModule.unfreeze() by returning self (#21469)
  • Added litlogger integration(#21430)
  • Deprecated to_torchscript method due to deprecation of TorchScript in PyTorch (#21397)
  • Removed support for Python 3.9 due to end-of-life status (#21398)
  • Fixed save_hyperparameters(ignore=...) behavior so subclass ignore rules override base class rules (#21490)
  • Fixed LightningDataModule.load_from_checkpoint to restore the datamodule subclass and hyperparameters (#21478)
  • Fixed ModelParallelStrategy single-file checkpointing when torch.compile wraps the model so optimizer states no longer raise KeyError during save (#21357)
  • Sanitize profiler filenames when saving to avoid crashes due to invalid characters (#21395)
  • Fixed StochasticWeightAveraging with infinite epochs (#21396)
  • Fixed _generate_seed_sequence_sampling function not producing unique seeds (#21399)
  • Fixed ThroughputMonitor callback emitting warnings too frequently (#21453)

Lightning Fabric

  • Exposed weights_only argument for loading checkpoints in Fabric.load() and Fabric.load_raw() (#21470)
  • Fixed DistributedSamplerWrapper not forwarding set_epoch to the underlying sampler (#21454)
  • Fixed DDP notebook CUDA fork check to allow passive initialization when CUDA is not actively used (#21402)

... (truncated)

Commits
  • 655a3a9 bump(deps): bump litlogger version to >=0.1.7 (#21517)
  • 300c05a Prepare release 2.6.1 (#21516)
  • dc16bc5 build(deps): update setuptools requirement from <80.9.1 to <80.10.3 in /requi...
  • 6ee3800 build(deps): update torchvision requirement from <0.25.0,>=0.16.0 to >=0.16.0...
  • 6478f8e Fix save_hyperparameters ignore precedence in subclasses (#21490)
  • 2712587 CI: fix doctest failure from PyTorch LeafSpec FutureWarning (#21502)
  • ae1dc6f fix(link-check): resolve broken ...

    Description has been truncated

Bumps the python-dependencies group with 25 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.6` | `0.135.2` |
| [gdown](https://github.com/wkentaro/gdown) | `5.2.0` | `5.2.1` |
| [pathspec](https://github.com/cpburnz/python-pathspec) | `0.12.1` | `1.0.4` |
| [torch](https://github.com/pytorch/pytorch) | `2.9.1` | `2.11.0` |
| [typer](https://github.com/fastapi/typer) | `0.15.1` | `0.24.1` |
| [uvicorn[standard]](https://github.com/Kludex/uvicorn) | `0.34.0` | `0.42.0` |
| [wandb](https://github.com/wandb/wandb) | `0.23.1` | `0.25.1` |
| [pytorch-lightning](https://github.com/Lightning-AI/pytorch-lightning) | `2.6.0` | `2.6.1` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.187.0` | `2.193.0` |
| [requests](https://github.com/psf/requests) | `2.32.5` | `2.33.1` |
| [python-multipart](https://github.com/Kludex/python-multipart) | `0.0.21` | `0.0.22` |
| [opencv-python](https://github.com/opencv/opencv-python) | `4.12.0.88` | `4.13.0.92` |
| [locust](https://github.com/locustio/locust) | `2.43.1` | `2.43.3` |
| [evidently](https://github.com/evidentlyai/evidently) | `0.7.20` | `0.7.21` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.3.3` | `3.0.2` |
| [coverage](https://github.com/coveragepy/coveragepy) | `7.6.9` | `7.13.5` |
| [invoke](https://github.com/pyinvoke/invoke) | `2.2.0` | `2.2.1` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.4.6` | `9.7.6` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.1.0` | `4.5.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.4` | `9.0.2` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.12.2` | `2.0.3` |
| [mypy](https://github.com/python/mypy) | `1.19.1` | `1.20.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.10` | `0.15.8` |
| [ty](https://github.com/astral-sh/ty) | `0.0.9` | `0.0.27` |
| [tensorboard-plugin-profile](https://github.com/openxla/xprof) | `2.21.3` | `2.22.0` |



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

Updates `gdown` from 5.2.0 to 5.2.1
- [Release notes](https://github.com/wkentaro/gdown/releases)
- [Commits](wkentaro/gdown@v5.2.0...v5.2.1)

Updates `pathspec` from 0.12.1 to 1.0.4
- [Release notes](https://github.com/cpburnz/python-pathspec/releases)
- [Changelog](https://github.com/cpburnz/python-pathspec/blob/master/CHANGES.rst)
- [Commits](cpburnz/python-pathspec@v0.12.1...v1.0.4)

Updates `torch` from 2.9.1 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.9.1...v2.11.0)

Updates `typer` from 0.15.1 to 0.24.1
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.15.1...0.24.1)

Updates `uvicorn[standard]` from 0.34.0 to 0.42.0
- [Release notes](https://github.com/Kludex/uvicorn/releases)
- [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.34.0...0.42.0)

Updates `wandb` from 0.23.1 to 0.25.1
- [Release notes](https://github.com/wandb/wandb/releases)
- [Changelog](https://github.com/wandb/wandb/blob/main/CHANGELOG.md)
- [Commits](wandb/wandb@v0.23.1...v0.25.1)

Updates `pytorch-lightning` from 2.6.0 to 2.6.1
- [Release notes](https://github.com/Lightning-AI/pytorch-lightning/releases)
- [Commits](Lightning-AI/pytorch-lightning@2.6.0...2.6.1)

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

Updates `google-api-python-client` from 2.187.0 to 2.193.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.187.0...v2.193.0)

Updates `requests` from 2.32.5 to 2.33.1
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.5...v2.33.1)

Updates `python-multipart` from 0.0.21 to 0.0.22
- [Release notes](https://github.com/Kludex/python-multipart/releases)
- [Changelog](https://github.com/Kludex/python-multipart/blob/master/CHANGELOG.md)
- [Commits](Kludex/python-multipart@0.0.21...0.0.22)

Updates `opencv-python` from 4.12.0.88 to 4.13.0.92
- [Release notes](https://github.com/opencv/opencv-python/releases)
- [Commits](https://github.com/opencv/opencv-python/commits)

Updates `locust` from 2.43.1 to 2.43.3
- [Release notes](https://github.com/locustio/locust/releases)
- [Changelog](https://github.com/locustio/locust/blob/master/CHANGELOG.md)
- [Commits](locustio/locust@2.43.1...2.43.3)

Updates `evidently` from 0.7.20 to 0.7.21
- [Release notes](https://github.com/evidentlyai/evidently/releases)
- [Commits](evidentlyai/evidently@v0.7.20...v0.7.21)

Updates `pandas` from 2.3.3 to 3.0.2
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.3.3...v3.0.2)

Updates `coverage` from 7.6.9 to 7.13.5
- [Release notes](https://github.com/coveragepy/coveragepy/releases)
- [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.6.9...7.13.5)

Updates `invoke` from 2.2.0 to 2.2.1
- [Commits](pyinvoke/invoke@2.2.0...2.2.1)

Updates `mkdocs-material` from 9.4.6 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.4.6...9.7.6)

Updates `pre-commit` from 4.1.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.1.0...v4.5.1)

Updates `pytest` from 8.3.4 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.3.4...9.0.2)

Updates `mkdocstrings-python` from 1.12.2 to 2.0.3
- [Release notes](https://github.com/mkdocstrings/python/releases)
- [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python@1.12.2...2.0.3)

Updates `mypy` from 1.19.1 to 1.20.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.19.1...v1.20.0)

Updates `ruff` from 0.14.10 to 0.15.8
- [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.10...0.15.8)

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

Updates `tensorboard-plugin-profile` from 2.21.3 to 2.22.0
- [Release notes](https://github.com/openxla/xprof/releases)
- [Commits](openxla/xprof@xprof-v2.21.3...xprof-v2.22.0)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-version: 0.135.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: gdown
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pathspec
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: torch
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: typer
  dependency-version: 0.24.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: uvicorn[standard]
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: wandb
  dependency-version: 0.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pytorch-lightning
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: torchvision
  dependency-version: 0.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: google-api-python-client
  dependency-version: 2.193.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: requests
  dependency-version: 2.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: python-multipart
  dependency-version: 0.0.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: opencv-python
  dependency-version: 4.13.0.92
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: locust
  dependency-version: 2.43.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: evidently
  dependency-version: 0.7.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pandas
  dependency-version: 3.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: coverage
  dependency-version: 7.13.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: invoke
  dependency-version: 2.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: mkdocs-material
  dependency-version: 9.7.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pre-commit
  dependency-version: 4.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: mkdocstrings-python
  dependency-version: 2.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: mypy
  dependency-version: 1.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.15.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: ty
  dependency-version: 0.0.27
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: tensorboard-plugin-profile
  dependency-version: 2.22.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

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 1, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 13, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

2 similar comments
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 14, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 15, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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