Flow OBBBA Schedule 1-A deductions into MT taxable income#8565
Merged
hua7450 merged 4 commits intoJun 2, 2026
Conversation
Mont. Code Ann. § 15-30-2120 starts from federal taxable income, so the federal OBBBA Schedule 1-A deductions (the $6K enhanced senior deduction, qualified tip and overtime income exclusions, and passenger-vehicle loan interest) should flow into MT taxable income. PE-US's mt_agi_joint and mt_agi_indiv currently start from federal AGI and replicate the federal standard deduction in mt_standard_deduction, which understates MT subtractions by the Schedule 1-A amount. Add a new mt_federal_obbba_subtraction Person-level variable that projects the federal TaxUnit-level Schedule 1-A deductions onto the tax-unit head, and wire it into the subtractions list at 2025-01-01 (OBBBA effective date). Closes #8562. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8565 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 5 1 -4
Lines 62 16 -46
=========================================
- Hits 62 16 -46
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Adds reviewer-driven tests: - MFJ both spouses 65+: confirms head gets $12K, spouse 0. - Senior phaseout at MAGI = $75K (single threshold) and at $300K (fully phased out). - Tipped worker (non-senior) exercises the tip_income_deduction branch of the Schedule 1-A sum. Expands the variable reference tuple with the 2025 MT Form 2 Instructions p.7 (the most authoritative source for the design) and OBBBA SEC. 70201 (qualified tips). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
hua7450
approved these changes
Jun 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #8562.
Per Mont. Code Ann. § 15-30-2120, Montana taxable income starts from federal taxable income (Form 1040 Line 15), not federal AGI. Federal taxable income already nets the federal $6K Schedule 1-A senior deduction (OBBBA § 70103, IRC § 151(d)(5)(B)) — plus the qualified tip / overtime / passenger-vehicle loan-interest deductions added by OBBBA.
PE-US's
mt_agi_jointandmt_agi_indivcurrently start fromadjusted_gross_income_personand add back the federal standard deduction viamt_standard_deduction. That captures the federal std ded + age-65 addition but misses Schedule 1-A, leaving MT taxable income $6K too high for the originating scenario in PolicyEngine/policyengine-taxsim#948 (HoH age 75, 1 dep: PE-US returned mt_taxable_income $37,666 vs TC-Form-2 $31,665).Fix per the issue's Approach 2: keep MT starting from AGI but add a new Person-level
mt_federal_obbba_subtractionthat projects the four TaxUnit-level federal OBBBA deductions onto the head, and wire it into the subtractions list at 2025-01-01.Test plan
mt_federal_obbba_subtraction: 6000,mt_taxable_income_joint: 31_666,mt_income_tax: 1_488. Numerically matches TaxAct Form 2 within $1.🤖 Generated with Claude Code