langgraph-cli: 0.2.10 -> 0.3.6 (#430208)

This commit is contained in:
Pol Dellaiera 2025-08-04 07:21:38 +02:00 committed by GitHub
commit 114484ca72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,10 +4,11 @@
fetchFromGitHub, fetchFromGitHub,
# build-system # build-system
poetry-core, hatchling,
# dependencies # dependencies
click, click,
langgraph-sdk,
# testing # testing
pytest-asyncio, pytest-asyncio,
@ -20,21 +21,34 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "langgraph-cli"; pname = "langgraph-cli";
version = "0.2.10"; version = "0.3.6";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "langchain-ai"; owner = "langchain-ai";
repo = "langgraph"; repo = "langgraph";
tag = "cli==${version}"; tag = "cli==${version}";
hash = "sha256-gSiyFjk1lXiCv7JpX4J00WAPoMv4VsXDuCswbFhP2kY="; hash = "sha256-tBMdFOHSRjw0PtE19XytLU4MmjR3NBLJxUqWoG4L2F8=";
}; };
sourceRoot = "${src.name}/libs/cli"; sourceRoot = "${src.name}/libs/cli";
build-system = [ poetry-core ]; build-system = [ hatchling ];
dependencies = [ click ]; dependencies = [
click
langgraph-sdk
];
# Not yet. Depemnds on `langgraph-runtime-inmem` which isn't in github yet
# https://github.com/langchain-ai/langgraph/issues/5802
# optional-dependencies = {
# "inmem" = [
# langgraph-api
# langgraph-runtime-inmem
# python-dotenv
# ]
# }
nativeCheckInputs = [ nativeCheckInputs = [
pytest-asyncio pytest-asyncio
@ -55,8 +69,13 @@ buildPythonPackage rec {
"test_config_to_compose_end_to_end" "test_config_to_compose_end_to_end"
"test_config_to_compose_simple_config" "test_config_to_compose_simple_config"
"test_config_to_compose_watch" "test_config_to_compose_watch"
# Tests exit value, needs to happen in a passthru test
# Tests that require docker
"test_dockerfile_command_with_docker_compose" "test_dockerfile_command_with_docker_compose"
"test_build_command_with_api_version_and_base_image"
"test_build_command_with_api_version"
"test_build_generate_proper_build_context"
"test_build_command_shows_wolfi_warning"
]; ];
passthru.updateScript = gitUpdater { passthru.updateScript = gitUpdater {