Skip to content

Commit 58589fe

Browse files
authored
Prep for 0.1.0 release of langgraph-checkpoint-mongodb (#35)
1 parent 1e42877 commit 58589fe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

libs/langgraph-checkpoint-mongodb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "langgraph-checkpoint-mongodb"
7-
version = "0.1.0a3"
7+
version = "0.1.0"
88
description = "Library with a MongoDB implementation of LangGraph checkpoint saver."
99
authors = []
1010
license = "MIT"

libs/langgraph-checkpoint-mongodb/tests/integration_tests/test_pregel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6619,7 +6619,7 @@ def tools_node(input: ToolCall, config: RunnableConfig) -> AgentState:
66196619

66206620

66216621
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
6622-
@pytest.mark.skip('Interrupt does not work with transactions')
6622+
@pytest.mark.skip("Interrupt does not work with transactions")
66236623
def test_message_graph(
66246624
snapshot: SnapshotAssertion,
66256625
deterministic_uuids: MockerFixture,
@@ -7360,7 +7360,7 @@ def should_continue(messages):
73607360

73617361

73627362
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
7363-
@pytest.mark.skip('Interrupt does not work with transactions')
7363+
@pytest.mark.skip("Interrupt does not work with transactions")
73647364
def test_root_graph(
73657365
deterministic_uuids: MockerFixture,
73667366
request: pytest.FixtureRequest,

libs/langgraph-checkpoint-mongodb/tests/integration_tests/test_pregel_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9425,7 +9425,7 @@ async def side(state: State):
94259425

94269426

94279427
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
9428-
@pytest.mark.skip('Test is flaky')
9428+
@pytest.mark.skip("Test is flaky")
94299429
async def test_stream_subgraphs_during_execution(checkpointer_name: str) -> None:
94309430
class InnerState(TypedDict):
94319431
my_key: Annotated[str, operator.add]
@@ -11633,7 +11633,7 @@ async def edit(state: JokeState):
1163311633
reason="Python 3.11+ is required for async contextvars support",
1163411634
)
1163511635
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
11636-
@pytest.mark.skip('Test is flaky')
11636+
@pytest.mark.skip("Test is flaky")
1163711637
async def test_weather_subgraph(
1163811638
checkpointer_name: str, snapshot: SnapshotAssertion
1163911639
) -> None:

0 commit comments

Comments
 (0)