Skip to content

Bump the all-dependencies group with 9 updates#329

Merged
chrisguidry merged 1 commit intomainfrom
dependabot/uv/all-dependencies-cc430937cd
Feb 10, 2026
Merged

Bump the all-dependencies group with 9 updates#329
chrisguidry merged 1 commit intomainfrom
dependabot/uv/all-dependencies-cc430937cd

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2026

Bumps the all-dependencies group with 9 updates:

Package From To
redis 7.1.0 7.1.1
ipython 8.37.0 8.38.0
loq 0.1.0a3 0.1.0a7
prek 0.3.1 0.3.2
ruff 0.14.14 0.15.0
mkdocstrings 0.30.1 1.0.3
mkdocstrings-python 2.0.1 2.0.2
fastapi 0.128.5 0.128.6
starlette 0.50.0 0.52.1

Updates redis from 7.1.0 to 7.1.1

Release notes

Sourced from redis's releases.

7.1.1

Changes

🧪 Experimental Features

  • Added initial health check policies, refactored add_database method (#3906)

🧰 Maintenance

  • Disabled SCH in MultiDBClient underlying clients by default (#3938)
  • Added logging for MultiDBClients (#3865 #3896)

We'd like to thank all the contributors who worked on this release! @​vladvildanov

Commits

Updates ipython from 8.37.0 to 8.38.0

Commits

Updates loq from 0.1.0a3 to 0.1.0a7

Release notes

Sourced from loq's releases.

v0.1.0-alpha.7

Release Notes for 0.1.0a6

New Features

tighten Command (#40)

  • Ratchets down existing exact-path rules as files shrink
  • Removes rules for files now under the threshold
  • Never adds new rules or raises limits

Breaking Changes

Reworked baseline Command (#38)

  • Now resets all exact-path rules to match current file sizes
  • Adds rules for new violations, updates existing rules to current sizes, removes rules for compliant files
  • Removed --allow-growth flag — baseline now always reflects reality

Updated relax Command (#39)

  • Renamed --buffer to --extra (alias kept for compatibility)
  • Default extra changed from 100 to 0

Bug Fixes

Fixed Glob Pattern Matching (#35)

  • * now correctly stays within path segments
  • ** matches across directories

Fixed relax Exit Code (#36)

  • Now returns success when no changes needed (was incorrectly returning failure)

Fixed Output Formatting (#42, #43)

  • Unified output formatting across baseline/tighten/relax commands
  • Consistent change indicators: + added, ~ updated, - removed
  • Fixed sorting order

What's Changed

... (truncated)

Commits

Updates prek from 0.3.1 to 0.3.2

Release notes

Sourced from prek's releases.

0.3.2

Release Notes

Released on 2026-02-06.

Highlights

  • prek.toml is here!

    You can now use prek.toml as an alternative to .pre-commit-config.yaml for configuring prek. prek.toml mirrors the structure of .pre-commit-config.yaml, but TOML is less error-prone. Your existing .pre-commit-config.yaml will continue to work, but for new users and new projects, prek.toml may make more sense. If you want to switch, run prek util yaml-to-toml to convert YAML configs to prek.toml. See configuration docs for details.

    For example, this config:

    repos:
      - repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v6.0.0
        hooks:
          - id: check-yaml

    Can be written as prek.toml like this:

    [[repos]]
    repo = "https://github.com/pre-commit/pre-commit-hooks"
    rev = "v6.0.0"
    hooks = [ { id = "check-yaml" } ]
  • serde-yaml has been replaced with serde-saphyr

    We replaced the long-deprecated serde-yaml crate with serde-saphyr for YAML parsing. It is written in safe Rust and has better error messages, performance, and security. This lets us provide precise location information for configuration parsing errors, which should make it easier to fix config issues.

    For example, this invalid config:

    repos:
      - repo: https://github.com/crate-ci/typos
        hooks:
          - id: typos

    Before:

    $ prek run
    error: Failed to parse `.pre-commit-config.yaml`
      caused by: Invalid remote repo: missing field `rev`

... (truncated)

Changelog

Sourced from prek's changelog.

0.3.2

Released on 2026-02-06.

Highlights

  • prek.toml is here!

    You can now use prek.toml as an alternative to .pre-commit-config.yaml for configuring prek. prek.toml mirrors the structure of .pre-commit-config.yaml, but TOML is less error-prone. Your existing .pre-commit-config.yaml will continue to work, but for new users and new projects, prek.toml may make more sense. If you want to switch, run prek util yaml-to-toml to convert YAML configs to prek.toml. See configuration docs for details.

    For example, this config:

    repos:
      - repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v6.0.0
        hooks:
          - id: check-yaml

    Can be written as prek.toml like this:

    [[repos]]
    repo = "https://github.com/pre-commit/pre-commit-hooks"
    rev = "v6.0.0"
    hooks = [ { id = "check-yaml" } ]
  • serde-yaml has been replaced with serde-saphyr

    We replaced the long-deprecated serde-yaml crate with serde-saphyr for YAML parsing. It is written in safe Rust and has better error messages, performance, and security. This lets us provide precise location information for configuration parsing errors, which should make it easier to fix config issues.

    For example, this invalid config:

    repos:
      - repo: https://github.com/crate-ci/typos
        hooks:
          - id: typos

    Before:

    $ prek run
    error: Failed to parse `.pre-commit-config.yaml`
      caused by: Invalid remote repo: missing field `rev`

... (truncated)

Commits
  • 71790f3 Bump version to 0.3.2 (#1587)
  • 9172278 Use semver fallback sort when tag timestamps are equal (#1579)
  • 294325c Remove emoji in README.md (#1589)
  • dc7d09d Remove upper bound constraintof uv version (#1588)
  • 72a78ee Do not make the child a session leader (#1586)
  • 3fa9187 Add prek util yaml-to-toml to convert .pre-commit-config.yaml to `prek.to...
  • 2314871 Bump the supported uv version upper limit to 0.11.0 (#1580)
  • 4ff825e Include prek.toml in run hint for config filename (#1578)
  • b516d66 Update quick start to use prek.toml (#1576)
  • 60eb3f4 Document that use --refresh to pick up .prekignore changes (#1575)
  • Additional commits viewable in compare view

Updates ruff from 0.14.14 to 0.15.0

Release notes

Sourced from ruff's releases.

0.15.0

Release Notes

Released on 2026-02-03.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.

  • The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:

    # ruff: disable[N803]
    def foo(
        legacyArg1,
        legacyArg2,
        legacyArg3,
        legacyArg4,
    ): ...
    # ruff: enable[N803]

    See the documentation for more details.

  • The ruff:alpine Docker image is now based on Alpine 3.23 (up from 3.21).

  • The ruff:debian and ruff:debian-slim Docker images are now based on Debian 13 "Trixie" instead of Debian 12 "Bookworm."

  • Binaries for the ppc64 (64-bit big-endian PowerPC) architecture are no longer included in our releases. It should still be possible to build Ruff manually for this platform, if needed.

  • Ruff now resolves all extended configuration files before falling back on a default Python version.

Stabilization

The following rules have been stabilized and are no longer in preview:

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.0

Released on 2026-02-03.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.

  • The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:

    # ruff: disable[N803]
    def foo(
        legacyArg1,
        legacyArg2,
        legacyArg3,
        legacyArg4,
    ): ...
    # ruff: enable[N803]

    See the documentation for more details.

  • The ruff:alpine Docker image is now based on Alpine 3.23 (up from 3.21).

  • The ruff:debian and ruff:debian-slim Docker images are now based on Debian 13 "Trixie" instead of Debian 12 "Bookworm."

  • Binaries for the ppc64 (64-bit big-endian PowerPC) architecture are no longer included in our releases. It should still be possible to build Ruff manually for this platform, if needed.

  • Ruff now resolves all extended configuration files before falling back on a default Python version.

Stabilization

The following rules have been stabilized and are no longer in preview:

... (truncated)

Commits

Updates mkdocstrings from 0.30.1 to 1.0.3

Release notes

Sourced from mkdocstrings's releases.

1.0.3

1.0.3 - 2026-02-07

Compare with 1.0.2

Bug Fixes

  • Forward extension instances directly passed from Zensical (65b27ec by Timothée Mazzucotelli).
  • Propagate Zensical's zrelpath processor (dbf263d by Timothée Mazzucotelli).

1.0.2

1.0.2 - 2026-01-24

Compare with 1.0.1

Code Refactoring

  • Use global instances for handlers and autorefs (9f79141 by Timothée Mazzucotelli).

1.0.1

1.0.1 - 2026-01-19

Compare with 1.0.0

Code Refactoring

  • Support manual cross-references in Zensical too (d37d907 by Timothée Mazzucotelli).
  • Support cross-references in Zensical (f43f1ee by Timothée Mazzucotelli). PR-812

1.0.0

1.0.0 - 2025-11-27

Compare with 0.30.1

Breaking Changes

  • BaseHandler.name: Attribute value was changed: '' -> unset
  • BaseHandler.domain: Attribute value was changed: '' -> unset
  • BaseHandler.fallback_config: Public object was removed
  • BaseHandler.__init__(args): Parameter was removed
  • BaseHandler.__init__(kwargs): Parameter was removed
  • BaseHandler.__init__(theme): Parameter was added as required
  • BaseHandler.__init__(custom_templates): Parameter was added as required
  • BaseHandler.__init__(mdx): Parameter was added as required
  • BaseHandler.__init__(mdx_config): Parameter was added as required
  • BaseHandler.update_env(args): Parameter was removed
  • BaseHandler.update_env(kwargs): Parameter was removed
  • BaseHandler.update_env(config): Parameter was added as required
  • Handlers.get_anchors: Public object was removed (import from mkdocstrings directly)
  • mkdocstrings.plugin: Public module was removed (import from mkdocstrings directly)

... (truncated)

Changelog

Sourced from mkdocstrings's changelog.

1.0.3 - 2026-02-07

Compare with 1.0.2

Bug Fixes

  • Forward extension instances directly passed from Zensical (65b27ec by Timothée Mazzucotelli).
  • Propagate Zensical's zrelpath processor (dbf263d by Timothée Mazzucotelli).

1.0.2 - 2026-01-24

Compare with 1.0.1

Code Refactoring

  • Use global instances for handlers and autorefs (9f79141 by Timothée Mazzucotelli).

1.0.1 - 2026-01-19

Compare with 1.0.0

Code Refactoring

  • Support manual cross-references in Zensical too (d37d907 by Timothée Mazzucotelli).
  • Support cross-references in Zensical (f43f1ee by Timothée Mazzucotelli). PR-812

1.0.0 - 2025-11-27

Compare with 0.30.1

Breaking Changes

  • BaseHandler.name: Attribute value was changed: '' -> unset
  • BaseHandler.domain: Attribute value was changed: '' -> unset
  • BaseHandler.fallback_config: Public object was removed
  • BaseHandler.__init__(args): Parameter was removed
  • BaseHandler.__init__(kwargs): Parameter was removed
  • BaseHandler.__init__(theme): Parameter was added as required
  • BaseHandler.__init__(custom_templates): Parameter was added as required
  • BaseHandler.__init__(mdx): Parameter was added as required
  • BaseHandler.__init__(mdx_config): Parameter was added as required
  • BaseHandler.update_env(args): Parameter was removed
  • BaseHandler.update_env(kwargs): Parameter was removed
  • BaseHandler.update_env(config): Parameter was added as required
  • Handlers.get_anchors: Public object was removed (import from mkdocstrings directly)
  • mkdocstrings.plugin: Public module was removed (import from mkdocstrings directly)
  • mkdocstrings.loggers: Public module was removed (import from mkdocstrings directly)
  • mkdocstrings.inventory: Public module was removed (import from mkdocstrings directly)
  • mkdocstrings.extension: Public module was removed (import from mkdocstrings directly)
  • mkdocstrings.handlers: Public module was removed (import from mkdocstrings directly)

... (truncated)

Commits
  • 8bdff16 chore: Prepare release 1.0.3
  • 65b27ec fix: Forward extension instances directly passed from Zensical
  • 1624e2c ci: Update lint/type-checking
  • cc3d6a4 chore: Template upgrade
  • dbf263d fix: Propagate Zensical's zrelpath processor
  • 4e66617 chore: Prepare release 1.0.2
  • 9f79141 refactor: Use global instances for handlers and autorefs
  • cb8a3c7 chore: Prepare release 1.0.1
  • d37d907 refactor: Support manual cross-references in Zensical too
  • 0edd18a chore: Clean up after v1
  • Additional commits viewable in compare view

Updates mkdocstrings-python from 2.0.1 to 2.0.2

Release notes

Sourced from mkdocstrings-python's releases.

2.0.2

2.0.2 - 2026-02-09

Compare with 2.0.1

Bug Fixes

Changelog

Sourced from mkdocstrings-python's changelog.

2.0.2 - 2026-02-09

Compare with 2.0.1

Bug Fixes

Commits
  • 4e546b5 chore: Prepare release 2.0.2
  • 1781871 Merge branch 'main' of github.com:mkdocstrings/python
  • 0ae77a3 fix: Fix aliases for parameters
  • 5bab7f5 chore: Update sponsors section in README (#325)
  • See full diff in compare view

Updates fastapi from 0.128.5 to 0.128.6

Release notes

Sourced from fastapi's releases.

0.128.6

Fixes

Translations

Internal

Commits

Updates starlette from 0.50.0 to 0.52.1

Release notes

Sourced from starlette's releases.

Version 0.52.1

What's Changed


Full Changelog: Kludex/starlette@0.52.0...0.52.1

Version 0.52.0

In this release, State can be accessed using dictionary-style syntax for improved type safety (#3036).

from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
from typing import TypedDict
import httpx
from starlette.applications import Starlette
from starlette.requests import Request
class State(TypedDict):
http_client: httpx.AsyncClient
@​asynccontextmanager
async def lifespan(app: Starlette) -> AsyncIterator[State]:
async with httpx.AsyncClient() as client:
yield {"http_client": client}
async def homepage(request: Request[State]):
client = request.state["http_client"]
# If you run the below line with mypy or pyright, it will reveal the correct type.
reveal_type(client)  # Revealed type is 'httpx.AsyncClient'

See Accessing State for more details.


Full Changelog: Kludex/starlette@0.51.0...0.52.0

Version 0.51.0

Added

  • Add allow_private_network in CORSMiddleware #3065.

Changed

... (truncated)

Changelog

Sourced from starlette's changelog.

0.52.1 (January 18, 2026)

Fixed

  • Only use typing_extensions in older Python versions #3109.

0.52.0 (January 18, 2026)

In this release, State can be accessed using dictionary-style syntax for improved type safety (#3036).

from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
from typing import TypedDict
import httpx
from starlette.applications import Starlette
from starlette.requests import Request
class State(TypedDict):
http_client: httpx.AsyncClient
@​asynccontextmanager
async def lifespan(app: Starlette) -> AsyncIterator[State]:
async with httpx.AsyncClient() as client:
yield {"http_client": client}
async def homepage(request: Request[State]):
client = request.state["http_client"]
# If you run the below line with mypy or pyright, it will reveal the correct type.
reveal_type(client)  # Revealed type is 'httpx.AsyncClient'

See Accessing State for more details.

0.51.0 (January 10, 2026)

Added

  • Add allow_private_network in CORSMiddleware #3065.

Changed

  • Increase warning stacklevel on DeprecationWarning for wsgi module #3082.
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Feb 9, 2026
@github-actions
Copy link

github-actions bot commented Feb 9, 2026

📚 Documentation has been built for this PR!

You can download the documentation directly here:
https://github.com/chrisguidry/docket/actions/runs/21883679555/artifacts/5456533890

Bumps the all-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [redis](https://github.com/redis/redis-py) | `7.1.0` | `7.1.1` |
| [ipython](https://github.com/ipython/ipython) | `8.37.0` | `8.38.0` |
| [loq](https://github.com/jakekaplan/loq) | `0.1.0a3` | `0.1.0a7` |
| [prek](https://github.com/j178/prek) | `0.3.1` | `0.3.2` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.14` | `0.15.0` |
| [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings) | `0.30.1` | `1.0.3` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `2.0.1` | `2.0.2` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.128.5` | `0.128.6` |
| [starlette](https://github.com/Kludex/starlette) | `0.50.0` | `0.52.1` |


Updates `redis` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v7.1.0...v7.1.1)

Updates `ipython` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.37.0...8.38.0)

Updates `loq` from 0.1.0a3 to 0.1.0a7
- [Release notes](https://github.com/jakekaplan/loq/releases)
- [Commits](jakekaplan/loq@v0.1.0-alpha.3...v0.1.0-alpha.7)

Updates `prek` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/j178/prek/releases)
- [Changelog](https://github.com/j178/prek/blob/master/CHANGELOG.md)
- [Commits](j178/prek@v0.3.1...v0.3.2)

Updates `ruff` from 0.14.14 to 0.15.0
- [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.14...0.15.0)

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

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

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

Updates `starlette` from 0.50.0 to 0.52.1
- [Release notes](https://github.com/Kludex/starlette/releases)
- [Changelog](https://github.com/Kludex/starlette/blob/main/docs/release-notes.md)
- [Commits](Kludex/starlette@0.50.0...0.52.1)

---
updated-dependencies:
- dependency-name: redis
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ipython
  dependency-version: 8.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: loq
  dependency-version: 0.1.0a7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: prek
  dependency-version: 0.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ruff
  dependency-version: 0.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: mkdocstrings
  dependency-version: 1.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: mkdocstrings-python
  dependency-version: 2.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: fastapi
  dependency-version: 0.128.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: starlette
  dependency-version: 0.52.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@chrisguidry chrisguidry force-pushed the dependabot/uv/all-dependencies-cc430937cd branch from d2a4870 to f93bd5e Compare February 10, 2026 21:48
@codecov-commenter
Copy link

codecov-commenter commented Feb 10, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.67%. Comparing base (da08e3f) to head (f93bd5e).
⚠️ Report is 1 commits behind head on main.

❌ Your project status has failed because the head coverage (98.67%) is below the target coverage (100.00%). You can increase the head coverage or adjust the target coverage.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #329   +/-   ##
=======================================
  Coverage   98.67%   98.67%           
=======================================
  Files         103      103           
  Lines       10323    10323           
  Branches      497      497           
=======================================
  Hits        10186    10186           
  Misses        121      121           
  Partials       16       16           
Flag Coverage Δ
python-3.10 98.67% <ø> (ø)
python-3.11 97.34% <ø> (ø)
python-3.12 98.67% <ø> (ø)
python-3.13 98.67% <ø> (ø)
python-3.14 98.66% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

chrisguidry added a commit that referenced this pull request Feb 10, 2026
- redis 7.1.0 → 7.1.1
- ipython 8.37.0 → 8.38.0
- loq 0.1.0a3 → 0.1.0a7
- prek 0.3.1 → 0.3.2
- ruff 0.14.14 → 0.15.0
- mkdocstrings 0.30.1 → 1.0.3
- mkdocstrings-python 2.0.1 → 2.0.2
- fastapi 0.128.5 → 0.128.7
- starlette 0.50.0 → 0.52.1

Supersedes #329

Co-Authored-By: Claude Opus 4.6 <[email protected]>
@chrisguidry chrisguidry merged commit aec04bd into main Feb 10, 2026
104 of 106 checks passed
@chrisguidry chrisguidry deleted the dependabot/uv/all-dependencies-cc430937cd branch February 10, 2026 22:08
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.

2 participants