chore[deps]: upgrade dependencies with uv lock --upgrade (#5358)

* chore: upgrade dependencies with `uv lock --upgrade`

* linting

* upgrade PR title

---------

Co-authored-by: sydney-runkle <54324534+sydney-runkle@users.noreply.github.com>
Co-authored-by: Sydney Runkle <sydneymarierunkle@gmail.com>
This commit is contained in:
github-actions[bot]
2025-07-07 23:24:32 +00:00
committed by GitHub
co-authored by sydney-runkle Sydney Runkle
parent 4c73b176ff
commit 87f2e69395
18 changed files with 1486 additions and 1282 deletions
@@ -203,7 +203,7 @@ class AsyncSqliteSaver(BaseCheckpointSaver[str]):
while True:
try:
yield asyncio.run_coroutine_threadsafe(
anext(aiter_), # noqa: F821
anext(aiter_), # type: ignore[arg-type] # noqa: F821
self.loop,
).result()
except StopAsyncIteration: