Skip to content

Commit

Permalink
Missing Mississippi 2023 income tax bracket threshold (#5325)
Browse files Browse the repository at this point in the history
Fixes #5324
  • Loading branch information
PavelMakarchuk authored Nov 14, 2024
1 parent d05160d commit 6cd1f5b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
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:
- Mississippi missing 2023 income tax bracket thresholds.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ brackets:
2017-01-01: 10_000
2018-01-01: 5_000
2022-01-01: 10_000
2024-01-01: .inf
2023-01-01: .inf
rate:
2017-01-01: 0.05
2018-01-01: 0.04
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,20 @@
ms_taxable_income_indiv: 4_000
output:
ms_income_tax_before_credits_indiv: 0


- name: High earner in 2023
period: 2023
input:
state_code: MS
ms_taxable_income_indiv: 1_000_000
output:
ms_income_tax_before_credits_indiv: 49_500

- name: Income over top threshold in 2023
period: 2023
input:
state_code: MS
ms_taxable_income_indiv: 12_000
output:
ms_income_tax_before_credits_indiv: 100

0 comments on commit 6cd1f5b

Please sign in to comment.