Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into Kevintowne/issue3015
  • Loading branch information
Kevintowne committed Sep 21, 2023
2 parents b5024ab + 6de5c3e commit 99586b7
Show file tree
Hide file tree
Showing 11 changed files with 83 additions and 58 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.471.1] - 2023-09-21 12:36:13

### Fixed

- Remove two unused variables in variables/gov/irs/taxcalc/deductions/standard directory.

## [0.471.0] - 2023-09-21 12:28:34

### Added

- Arkansas child and dependent care credit.

## [0.470.1] - 2023-09-20 17:44:51

### Fixed
Expand Down Expand Up @@ -5315,6 +5327,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



[0.471.1]: https://github.com/PolicyEngine/policyengine-us/compare/0.471.0...0.471.1
[0.471.0]: https://github.com/PolicyEngine/policyengine-us/compare/0.470.1...0.471.0
[0.470.1]: https://github.com/PolicyEngine/policyengine-us/compare/0.470.0...0.470.1
[0.470.0]: https://github.com/PolicyEngine/policyengine-us/compare/0.469.0...0.470.0
[0.469.0]: https://github.com/PolicyEngine/policyengine-us/compare/0.468.0...0.469.0
Expand Down
11 changes: 11 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4481,3 +4481,14 @@
fixed:
- Colorado income tax model formatting.
date: 2023-09-20 17:44:51
- bump: minor
changes:
added:
- Arkansas child and dependent care credit.
date: 2023-09-21 12:28:34
- bump: patch
changes:
fixed:
- Remove two unused variables in variables/gov/irs/taxcalc/deductions/standard
directory.
date: 2023-09-21 12:36:13
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Child and Dependent Care Credit
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
description: Arkansas matches this percentage of the federal child and dependent care credit.
metadata:
unit: /1
period: year
label: Arkansas household and dependents care credit match
reference:
- title: Ark. Code R. § 26-51-502(c)(1)(A)(ii)
href: https://codes.findlaw.com/ar/title-26-taxation/ar-code-sect-26-51-502/
- title: Arkansas 2022 AR2441 | line 10
href: https://www.dfa.arkansas.gov/images/uploads/incomeTaxOffice/2022_AR2441_Child_andDependentCareExpenses.pdf#page=1
values:
2013-01-01: 0.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: Arkansas provides these refundable income tax credits.
values:
2021-01-01:
- ar_cdcc
metadata:
reference:
- title: Ark. Code R. § 26-51-502 Household and dependent care expenses (c)(1)(A)(ii)
href: https://codes.findlaw.com/ar/title-26-taxation/ar-code-sect-26-51-502/
unit: list
period: year
label: Arkansas refundable income tax credits
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- name: No cdcc
period: 2022
input:
cdcc: 0
state_code: AR
output:
ar_cdcc: 0

- name: Some cdcc, 20%
period: 2022
input:
cdcc: 1_000
state_code: AR
output:
ar_cdcc: 200

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ class ar_refundable_credits(Variable):
unit = USD
definition_period = YEAR
defined_for = StateCode.AR

adds = "gov.states.ar.tax.income.credits.refundable"
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from policyengine_us.model_api import *


class ar_cdcc(Variable):
value_type = float
entity = TaxUnit
label = "Arkansas Child and Dependent Care Credit"
unit = USD
documentation = "https://codes.findlaw.com/ar/title-26-taxation/ar-code-sect-26-51-502/"
definition_period = YEAR
defined_for = StateCode.AR

def formula(tax_unit, period, parameters):
p = parameters(period).gov.states.ar.tax.income.credits.cdcc
cdcc = tax_unit("cdcc", period)
return cdcc * p.match
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="policyengine-us",
version="0.470.1",
version="0.471.1",
author="PolicyEngine",
author_email="[email protected]",
long_description=readme,
Expand Down

0 comments on commit 99586b7

Please sign in to comment.