Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2025 Texas TANF monthly income limits #5521

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Added 2025 Texas TANF Income Limits.
Original file line number Diff line number Diff line change
@@ -13,19 +13,24 @@ brackets:
2023-01-01: 1
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reference for the previous values? Want to make sure that the value did not update in 2024 as well

amount:
2023-01-01: 2_265
2025-01-01: 2_510
- threshold:
2023-01-01: 2
amount:
2023-01-01: 3_052
2025-01-01: 3_407
- threshold:
2023-01-01: 3
amount:
2023-01-01: 3_839
2025-01-01: 4_304
- threshold:
2023-01-01: 4
amount:
2023-01-01: 4_625
2025-01-01: 5_200
- threshold:
2023-01-01: 5
amount:
2023-01-01: 5_412
2025-01-01: 6_097
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
- name: Two-person household has $3,052 monthly TANF income limit in 2023.
period: 2023
- name: Two-person household has $3,407 monthly TANF income limit in 2025.
period: 2025
absolute_error_margin: 0
input:
spm_unit_size: 2
state_code: TX
output:
tx_tanf_income_limit: 3_052 * 12
one_time_tx_tanf_income_limit: 3_407 * 12

- name: Only applies to households in Texas.
period: 2023
period: 2025
absolute_error_margin: 0
input:
spm_unit_size: 2
state_code: CA
output:
tx_tanf_income_limit: 0
one_time_tx_tanf_income_limit: 0
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from policyengine_us.model_api import *


class tx_tanf_income_limit(Variable):
class tx_one_time_tanf_income_limit(Variable):
value_type = float
entity = SPMUnit
label = "Texas TANF income limit"
label = "One Time Texas TANF income limit"
unit = USD
definition_period = YEAR
reference = (
@@ -14,5 +14,5 @@ class tx_tanf_income_limit(Variable):

def formula(spm_unit, period, parameters):
size = spm_unit("spm_unit_size", period)
p = parameters(period).gov.states.tx.tanf
return p.monthly_income_limit.calc(size) * MONTHS_IN_YEAR
p = parameters(period).gov.states.tx.tanf.one_time_tanf
return p.one_time_monthly_income_limit.calc(size) * MONTHS_IN_YEAR