Skip to content
Merged
Show file tree
Hide file tree
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: minor
changes:
added:
- Enable Georgia state income tax computation.
5 changes: 5 additions & 0 deletions policyengine_us/modelled_policies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ filtered:
modelled:
- District of Columbia income tax
- District of Columbia TANF
GA:
modelled:
- Georgia state income tax
not_modelled:
- Georgia TANF
IA:
modelled:
- Iowa state income tax
Expand Down
4 changes: 0 additions & 4 deletions policyengine_us/parameters/gov/states/ga/index.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class state_income_tax_before_refundable_credits(Variable):
"co_income_tax_before_refundable_credits",
"dc_income_tax_before_refundable_credits",
"de_income_tax_before_refundable_credits",
"ga_income_tax_before_refundable_credits",
"ia_income_tax_before_refundable_credits",
"il_total_tax",
"in_income_tax_before_refundable_credits",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class household_refundable_tax_credits(Variable):
"co_refundable_credits", # Colorado.
"dc_refundable_credits", # District of Columbia.
"de_refundable_credits", # Delaware.
"ga_refundable_credits", # Georgia.
"ia_refundable_credits", # Iowa.
"il_refundable_credits", # Illinois.
"in_refundable_credits", # Indiana.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class household_state_income_tax(Variable):
"co_income_tax_before_refundable_credits",
"dc_income_tax_before_refundable_credits",
"de_income_tax_before_refundable_credits",
"ga_income_tax_before_refundable_credits",
"ia_income_tax_before_refundable_credits",
"il_total_tax",
"in_income_tax_before_refundable_credits",
Expand Down Expand Up @@ -45,6 +46,7 @@ class household_state_income_tax(Variable):
"co_refundable_credits", # Colorado
"dc_refundable_credits", # District of Columbia.
"de_refundable_credits", # Delaware.
"ga_refundable_credits", # Georgia.
"ia_refundable_credits", # Iowa.
"il_refundable_credits", # Illinois.
"in_refundable_credits", # Indiana.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class household_tax_before_refundable_credits(Variable):
"co_income_tax_before_refundable_credits",
"dc_income_tax_before_refundable_credits",
"de_income_tax_before_refundable_credits",
"ga_income_tax_before_refundable_credits",
"ia_income_tax_before_refundable_credits",
"il_total_tax",
"in_income_tax_before_refundable_credits",
Expand Down