From 803d2051b606f26d4a1512f85d9a5ecb57a81d52 Mon Sep 17 00:00:00 2001 From: Koishore Roy Date: Thu, 4 Jun 2026 03:53:21 +0530 Subject: [PATCH] Require delego >= 0.2.2 (amount-cap nan fix) The policy uses an `amount` constraint; delego 0.2.2 fixes the fail-open where a NaN amount slipped any cap. Now that 0.2.2 is on PyPI, pin to it. Co-Authored-By: Claude Opus 4.8 (1M context) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b206961..ab7d16d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -delego>=0.2.1 +delego>=0.2.2 # 0.2.2 fixes the amount-cap nan bypass this policy relies on fastapi>=0.110 uvicorn[standard]>=0.29 httpx>=0.27