Fix SC SALT addback to use pre-OBBBA cap (SC IL #26-4)#8240
Closed
PavelMakarchuk wants to merge 1 commit intomainfrom
Closed
Fix SC SALT addback to use pre-OBBBA cap (SC IL #26-4)#8240PavelMakarchuk wants to merge 1 commit intomainfrom
PavelMakarchuk wants to merge 1 commit intomainfrom
Conversation
South Carolina has not conformed to OBBBA's 2025 federal SALT cap increase from $10,000 to $40,000 ($20,000 MFS). The SC State Tax addback worksheet (SC1040 line 1d) currently reads the federal SALT cap parameter directly, which steps up to $40K at 2025-01-01. As a result, post-2024 SC itemizers with state income tax above $10K (minus real-estate taxes paid) get an inflated worksheet line 5, overstating their SC State Tax addback and SC tax liability. Add a SC-frozen `state_tax_addback/salt_cap.yaml` parameter holding $10,000 / $5,000 MFS, referenced to SC IL #26-4 and the SC1040 instructions. Update `sc_state_tax_addback.py` to read this SC parameter instead of `gov.irs.deductions.itemized.salt_and_real_estate.cap`. Tests: existing 6 pre-OBBBA cases pass unchanged; 4 new 2025 cases covering MFJ at SALT just above $10K, MFJ high-SALT (full $10K cap consumed by real estate, addback drops to $0), SINGLE, and MFS. 10/10 SC SALT addback tests pass; 309/309 SC tax tests pass; format clean. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8240 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 12 1 -11
Lines 173 23 -150
Branches 4 0 -4
==========================================
- Hits 173 23 -150
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:
|
Collaborator
Author
|
Closing per maintainer direction. |
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
South Carolina has not conformed to OBBBA's 2025 federal SALT cap increase from $10,000 to $40,000 ($20,000 MFS) per SC Information Letter #26-4 Revised, Item 6. The SC1040 line 1d State Tax Addback worksheet must continue to use the pre-OBBBA $10K / $5K MFS cap.
This is a follow-up to the comment on PR #7870.
Bug
sc_state_tax_addback.pyreads the federal SALT cap directly:The federal parameter steps up to $40K at 2025-01-01, so SC inherits the post-OBBBA cap. For 2025+ itemizers, this overstates the SC State Tax addback (worksheet line 5 =
cap − real_estate_taxes; a higher cap leaves more room for state-income-tax addback) and therefore overstates SC tax liability.Fix
policyengine_us/parameters/gov/states/sc/tax/income/additions/state_tax_addback/salt_cap.yamlholding $10,000 / $5,000 MFS effective 2018-01-01 (the federal TCJA SALT-cap effective date), referenced to SC IL make a test for max snap benefit, add to existing tests #26-4 and the SC1040 worksheet instructions.sc_state_tax_addback.pyto read this SC parameter instead ofgov.irs.deductions.itemized.salt_and_real_estate.cap.Tests
Verification
sc_state_tax_addback.yamltests pass🤖 Generated with Claude Code