Commit 105e61ab authored by Sarah Clark's avatar Sarah Clark
Browse files

langgraph-checkpoint-*: Relax dependency on langgraph-checkpoint

parent 3535716d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -36,6 +36,9 @@ buildPythonPackage rec {
    langgraph-checkpoint
  ];

  # Checkpoint clients are lagging behind langgraph-checkpoint
  pythonRelaxDeps = [ "langgraph-checkpoint" ];

  pythonImportsCheck = [ "langgraph.checkpoint.duckdb" ];

  nativeCheckInputs = [
+5 −2
Original line number Diff line number Diff line
@@ -48,7 +48,10 @@ buildPythonPackage rec {
    psycopg-pool
  ];

  pythonRelaxDeps = [ "psycopg-pool" ];
  pythonRelaxDeps = [
    "langgraph-checkpoint"
    "psycopg-pool"
  ];

  doCheck = !(stdenvNoCC.hostPlatform.isDarwin);

+3 −0
Original line number Diff line number Diff line
@@ -34,6 +34,9 @@ buildPythonPackage rec {
    langgraph-checkpoint
  ];

  # Checkpoint clients are lagging behind langgraph-checkpoint
  pythonRelaxDeps = [ "langgraph-checkpoint" ];

  pythonImportsCheck = [ "langgraph.checkpoint.sqlite" ];

  nativeCheckInputs = [