-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/PolicyEngine/policyengine…
…-canada into 7qiwx/issue464
- Loading branch information
Showing
6 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
15 changes: 15 additions & 0 deletions
15
...gine_canada/parameters/gov/provinces/ns/tax/income/credits/pension_income_amount/cap.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
description: Nova Scotia caps the pension income amount at this amount. | ||
values: | ||
2017-01-01: 1_173 | ||
metadata: | ||
unit: currency-CAD | ||
period: year | ||
label: Nova Scotia pension income amount cap | ||
reference: | ||
- title: 2022 Nova Scotia Personal Tax Credits Return Line 3 | ||
href: https://hr.acadiau.ca/files/sites/hr/Payroll/Pensions%20&%20Benefits/NS_TD1_2022.pdf#page=1 | ||
- title: 2022 Worksheet NS428 | ||
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/5003-c/5003-c-22e.pdf#page=1 | ||
- title: Nova Scotia income tax act - subdivision c - Deduction for employment out of Canada - 10H | ||
href: https://nslegislature.ca/sites/default/files/legc/statutes/income%20tax.pdf#page=28 | ||
|
31 changes: 31 additions & 0 deletions
31
policyengine_canada/tests/gov/provinces/ns/tax/income/credits/ns_pension_income_amount.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
- name: Person has pension income lower than 1_173 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
pension_and_savings_plan_income: 1_172 | ||
output: | ||
ns_pension_income_amount: 1_172 | ||
|
||
- name: Person has pension income equal to 1_173 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
pension_and_savings_plan_income: 1_173 | ||
output: | ||
ns_pension_income_amount: 1_173 | ||
|
||
- name: Person has pension income higher than 1_173 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
pension_and_savings_plan_income: 1_180 | ||
output: | ||
ns_pension_income_amount: 1_173 | ||
|
||
- name: Person has pension income 0 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
pension_and_savings_plan_income: 0 | ||
output: | ||
ns_pension_income_amount: 0 |
26 changes: 26 additions & 0 deletions
26
...cyengine_canada/variables/gov/provinces/ns/tax/income/credits/ns_pension_income_amount.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class ns_pension_income_amount(Variable): | ||
value_type = float | ||
entity = Person | ||
label = "Nova Scotia pension income amount" | ||
unit = CAD | ||
definition_period = YEAR | ||
defined_for = ProvinceCode.NS | ||
reference = ( | ||
"https://hr.acadiau.ca/files/sites/hr/Payroll/Pensions%20&%20Benefits/NS_TD1_2022.pdf#page=1", | ||
"https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/5003-c/5003-c-22e.pdf#page=1", | ||
"https://nslegislature.ca/sites/default/files/legc/statutes/income%20tax.pdf#page=28", | ||
) | ||
|
||
def formula(person, period, parameters): | ||
p = parameters( | ||
period | ||
).gov.provinces.ns.tax.income.credits.pension_income_amount | ||
|
||
pension_income_amount = person( | ||
"pension_and_savings_plan_income", period | ||
) | ||
|
||
return min_(pension_income_amount, p.cap) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ | |
|
||
setup( | ||
name="policyengine-canada", | ||
version="0.87.1", | ||
version="0.88.0", | ||
author="PolicyEngine", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
|