langgraph-checkpoint-*: Relax dependency on langgraph-checkpoint
This commit is contained in:
@@ -36,6 +36,9 @@ buildPythonPackage rec {
|
||||
langgraph-checkpoint
|
||||
];
|
||||
|
||||
# Checkpoint clients are lagging behind langgraph-checkpoint
|
||||
pythonRelaxDeps = [ "langgraph-checkpoint" ];
|
||||
|
||||
pythonImportsCheck = [ "langgraph.checkpoint.duckdb" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
|
||||
@@ -48,7 +48,10 @@ buildPythonPackage rec {
|
||||
psycopg-pool
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [ "psycopg-pool" ];
|
||||
pythonRelaxDeps = [
|
||||
"langgraph-checkpoint"
|
||||
"psycopg-pool"
|
||||
];
|
||||
|
||||
doCheck = !(stdenvNoCC.hostPlatform.isDarwin);
|
||||
|
||||
@@ -60,7 +63,7 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export postgresqlTestUserOptions = "LOGIN SUPERUSER"
|
||||
export postgresqlTestUserOptions="LOGIN SUPERUSER"
|
||||
'';
|
||||
|
||||
disabledTests = [
|
||||
|
||||
@@ -34,6 +34,9 @@ buildPythonPackage rec {
|
||||
langgraph-checkpoint
|
||||
];
|
||||
|
||||
# Checkpoint clients are lagging behind langgraph-checkpoint
|
||||
pythonRelaxDeps = [ "langgraph-checkpoint" ];
|
||||
|
||||
pythonImportsCheck = [ "langgraph.checkpoint.sqlite" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
|
||||
Reference in New Issue
Block a user