From 784821705b5134e36c3e346854b6ae33f22cc100 Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Fri, 29 Nov 2024 11:30:19 -0500 Subject: [PATCH] checkpoint-postgres: pin psycopg >= 3.2.0 (#2580) --- libs/checkpoint-postgres/poetry.lock | 2 +- libs/checkpoint-postgres/pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/checkpoint-postgres/poetry.lock b/libs/checkpoint-postgres/poetry.lock index a3c23df97..d1cc60d52 100644 --- a/libs/checkpoint-postgres/poetry.lock +++ b/libs/checkpoint-postgres/poetry.lock @@ -1219,4 +1219,4 @@ watchmedo = ["PyYAML (>=3.10)"] [metadata] lock-version = "2.0" python-versions = "^3.9.0,<4.0" -content-hash = "35bd5ff50127337dbbdd1b9937bae6190d8f5c9a6808e334c7f45e5a471773fe" +content-hash = "d64fe96797a79103d952c13d4dc0a0296c468b6615b4872aa01cb34479ca4104" diff --git a/libs/checkpoint-postgres/pyproject.toml b/libs/checkpoint-postgres/pyproject.toml index c3602743b..a121a1b39 100644 --- a/libs/checkpoint-postgres/pyproject.toml +++ b/libs/checkpoint-postgres/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langgraph-checkpoint-postgres" -version = "2.0.5" +version = "2.0.6" description = "Library with a Postgres implementation of LangGraph checkpoint saver." authors = [] license = "MIT" @@ -12,8 +12,8 @@ packages = [{ include = "langgraph" }] python = "^3.9.0,<4.0" langgraph-checkpoint = "^2.0.7" orjson = ">=3.10.1" -psycopg = "^3.0.0" -psycopg-pool = "^3.0.0" +psycopg = "^3.2.0" +psycopg-pool = "^3.2.0" [tool.poetry.group.dev.dependencies] ruff = "^0.6.2"