From 5cab47f751bf2daa5f8e5218033e6c32362d2234 Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Wed, 7 Aug 2024 09:41:06 -0400 Subject: [PATCH] checkpoint: move memory into a directory to fix namespace import issues (#1249) --- .../langgraph/checkpoint/{memory.py => memory/__init__.py} | 0 libs/checkpoint/pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename libs/checkpoint/langgraph/checkpoint/{memory.py => memory/__init__.py} (100%) diff --git a/libs/checkpoint/langgraph/checkpoint/memory.py b/libs/checkpoint/langgraph/checkpoint/memory/__init__.py similarity index 100% rename from libs/checkpoint/langgraph/checkpoint/memory.py rename to libs/checkpoint/langgraph/checkpoint/memory/__init__.py diff --git a/libs/checkpoint/pyproject.toml b/libs/checkpoint/pyproject.toml index f35f83132..815a9b8da 100644 --- a/libs/checkpoint/pyproject.toml +++ b/libs/checkpoint/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langgraph-checkpoint" -version = "1.0.1" +version = "1.0.2" description = "Library with base interfaces for LangGraph checkpoint savers." authors = [] license = "MIT"