From d36e6ceaaf3c9c9d57ae751bf1ab9e965fec370e Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Mon, 2 Dec 2024 16:59:38 -0800 Subject: [PATCH] Fix --- libs/langgraph/tests/test_pregel_async.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/langgraph/tests/test_pregel_async.py b/libs/langgraph/tests/test_pregel_async.py index 6c85e57ed..378ca1ac1 100644 --- a/libs/langgraph/tests/test_pregel_async.py +++ b/libs/langgraph/tests/test_pregel_async.py @@ -12862,6 +12862,10 @@ async def test_parent_command(checkpointer_name: str) -> None: ) +@pytest.mark.skipif( + sys.version_info < (3, 11), + reason="Python 3.11+ is required for async contextvars support", +) @pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC) async def test_interrupt_subgraph(checkpointer_name: str): class State(TypedDict):