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
+6 -6
View File
@@ -280,9 +280,9 @@ def test_version_option() -> None:
assert result.exit_code == 0, "Expected exit code 0 for --version option"
# Check that the output contains the correct version information
assert (
"LangGraph CLI, version" in result.output
), "Expected version information in output"
assert "LangGraph CLI, version" in result.output, (
"Expected version information in output"
)
def test_dockerfile_command_basic() -> None:
@@ -570,6 +570,6 @@ def test_build_generate_proper_build_context():
build_context_pattern = re.compile(r"--build-context\s+(\w+)=([^\s]+)")
build_contexts = re.findall(build_context_pattern, result.output)
assert (
len(build_contexts) == 2
), f"Expected 2 build contexts, but found {len(build_contexts)}"
assert len(build_contexts) == 2, (
f"Expected 2 build contexts, but found {len(build_contexts)}"
)