Implement SC H.4216 comprehensive tax reform#7494
Merged
PavelMakarchuk merged 3 commits intoPolicyEngine:mainfrom Feb 26, 2026
Merged
Implement SC H.4216 comprehensive tax reform#7494PavelMakarchuk merged 3 commits intoPolicyEngine:mainfrom
PavelMakarchuk merged 3 commits intoPolicyEngine:mainfrom
Conversation
Collaborator
Author
Implementation NotesFiles AddedParameters (
Reform Code (
Tests (24 total):
References |
7d51bbf to
eeefd54
Compare
Collaborator
Author
|
Rebased on upstream/main and added changelog fragment in |
Adds contributed reform for South Carolina H.4216 which includes: - EITC cap at $200 (Section 7) - SC Income Adjusted Deduction (SCIAD) replacing federal standard/itemized deductions (Section 3) - New tax rates: 1.99% up to $30k, 5.21% above (Section 1) SCIAD amounts by filing status: - Single/Separate: $15,000 (phases out $40k-$95k AGI) - Head of Household: $22,500 (phases out $60k-$142.5k AGI) - Joint/Surviving Spouse: $30,000 (phases out $80k-$190k AGI) Closes PolicyEngine#7493 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
eeefd54 to
e39e40f
Compare
- Change parameter labels from "SC" to "South Carolina" in all 6 YAML files - Add SC Code section numbers to reference titles in rates.yaml and eitc/max.yaml - Add SEPARATE filer phase-out and fully-phased-out SCIAD tests - Add SURVIVING_SPOUSE phase-out and fully-phased-out SCIAD tests - Complete end-to-end test verifying all 4 reform variables together - Renumber test cases sequentially (38 total) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Implement round-down-to-nearest-$10 rule for SCIAD per H.4216 Section 3 - Update test expected values to reflect rounding - Add note in rates.yaml that H.4216 Items 2-3 automatic rate reductions (beginning 2027 based on revenue projections) are not modeled Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Collaborator
Author
Review Fixes AppliedAdded the following based on code review: 1. SCIAD Rounding Rule (Critical Fix)Per H.4216 Section 3, SCIAD reductions must round down to nearest $10. Added: raw_sciad = max_(base_amount * (1 - phase_out_fraction), 0)
# Per H.4216 Section 3, round down to nearest $10
return np.floor(raw_sciad / 10) * 102. Updated TestsAdjusted expected values for 4 tests to reflect the rounding rule:
3. Documented Unmodeled ProvisionsAdded note in All 38 tests pass ✅ |
PavelMakarchuk
approved these changes
Feb 26, 2026
This was referenced Apr 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
Implements South Carolina H.4216 as a contributed reform. This comprehensive income tax reform bill passed the SC Senate 39-5 and includes:
1. EITC Cap at $200 (Section 7)
The bill caps the SC EITC (125% of federal) at a maximum of $200.
2. SC Income Adjusted Deduction (SCIAD) (Section 3)
Replaces federal standard/itemized deductions with a new state-specific deduction:
Formula:
SCIAD = base_amount × (1 - (AGI - phase_out_start) / phase_out_width)3. New Tax Rates (Section 1)
Key Implementation Details
Closes #7493
Test Plan
🤖 Generated with Claude Code