From b83d974a481bf5d3f53f729c2bc3273672ce7488 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Thu, 19 Feb 2026 20:50:25 -0500 Subject: [PATCH 1/3] fixup! Update PolicyEngine US --- .../gov/usda/snap/eligibility/snap_assets.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py b/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py index 4462debdfaf..d4e1d0d937e 100644 --- a/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py +++ b/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py @@ -5,6 +5,16 @@ class snap_assets(Variable): value_type = float entity = SPMUnit definition_period = YEAR - documentation = "Countable assets for SNAP limits" + documentation = ( + "Countable liquid assets for SNAP resource limits. " + "Includes bank accounts, stocks, and bonds per " + "7 USC 2014(g). Excludes retirement accounts, " + "education savings, and vehicles." + ) label = "SNAP assets" unit = USD + reference = ( + "https://www.law.cornell.edu/uscode/text/7/2014#g", + ) + + adds = ["spm_unit_cash_assets"] From 4efcab3507024a515c718687f64de49d931cef99 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Thu, 19 Feb 2026 23:26:29 -0500 Subject: [PATCH 2/3] Add changelog entry Co-Authored-By: Claude Opus 4.6 --- changelog_entry.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29bb2d..a1e9aee1a97 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: minor + changes: + added: + - Connect SNAP asset test to SIPP-imputed liquid assets (bank accounts, stocks, bonds) so the resource limit binds in microsimulation. From 8fdee5d75e7e792c2a83a5c2512fcfaa7d4515d1 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Thu, 19 Feb 2026 23:29:39 -0500 Subject: [PATCH 3/3] Fix Black formatting Co-Authored-By: Claude Opus 4.6 --- .../variables/gov/usda/snap/eligibility/snap_assets.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py b/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py index d4e1d0d937e..1de3a7bd921 100644 --- a/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py +++ b/policyengine_us/variables/gov/usda/snap/eligibility/snap_assets.py @@ -13,8 +13,6 @@ class snap_assets(Variable): ) label = "SNAP assets" unit = USD - reference = ( - "https://www.law.cornell.edu/uscode/text/7/2014#g", - ) + reference = ("https://www.law.cornell.edu/uscode/text/7/2014#g",) adds = ["spm_unit_cash_assets"]