diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index 131723b29..bb7577f8d 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -116,8 +116,8 @@ jobs: timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-h echo "Finished starting up langgraph-test-h" LANGGRAPH_VERSION=$(docker run --rm --entrypoint "" langgraph-test-h python -c "import sys; from importlib.metadata import version; v = version('langgraph'); print(v);") - if [ "$LANGGRAPH_VERSION" != "1.1.2" ]; then - echo "LANGGRAPH_VERSION != 1.1.2; $LANGGRAPH_VERSION" + if [ "$LANGGRAPH_VERSION" != "1.1.5" ]; then + echo "LANGGRAPH_VERSION != 1.1.5; $LANGGRAPH_VERSION" exit 1 fi LANGCHAIN_OPENAI_VERSION=$(docker run --rm --entrypoint "" langgraph-test-h python -c "import sys; from importlib.metadata import version; v = version('langchain-openai'); print(v);") diff --git a/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml b/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml index 4c4469712..dedd48bf2 100644 --- a/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml +++ b/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml @@ -5,5 +5,5 @@ description = "Test for prerelease stuff" readme = "README.md" requires-python = ">=3.10" dependencies = [ - "langgraph==1.1.2" + "langgraph==1.1.5" ] \ No newline at end of file diff --git a/libs/cli/examples/graph_prerelease_reqs/pyproject.toml b/libs/cli/examples/graph_prerelease_reqs/pyproject.toml index 4091de8d2..f6ef3a0db 100644 --- a/libs/cli/examples/graph_prerelease_reqs/pyproject.toml +++ b/libs/cli/examples/graph_prerelease_reqs/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.10" dependencies = [ "langchain-openai==1.0.0a2", "langchain-anthropic==1.0.0a5", - "langgraph==1.1.2" + "langgraph==1.1.5" ] [tool.uv]