policyengine-us 1.425.4__py3-none-any.whl → 1.425.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of policyengine-us might be problematic. Click here for more details.

@@ -3,7 +3,7 @@ from policyengine_core.periods import period as period_
3
3
 
4
4
 
5
5
  def create_aca_ptc_additional_bracket() -> Reform:
6
- class aca_ptc_phase_out_rate(Variable):
6
+ class aca_required_contribution_percentage(Variable):
7
7
  """
8
8
  ACA Premium Tax Credit phase-out rate with linear bracket extension.
9
9
 
@@ -90,7 +90,7 @@ def create_aca_ptc_additional_bracket() -> Reform:
90
90
 
91
91
  class reform(Reform):
92
92
  def apply(self):
93
- self.update_variable(aca_ptc_phase_out_rate)
93
+ self.update_variable(aca_required_contribution_percentage)
94
94
  self.update_variable(is_aca_ptc_eligible)
95
95
 
96
96
  return reform
@@ -3,7 +3,7 @@ from policyengine_core.periods import period as period_
3
3
 
4
4
 
5
5
  def create_aca_ptc_simplified_bracket() -> Reform:
6
- class aca_ptc_phase_out_rate(Variable):
6
+ class aca_required_contribution_percentage(Variable):
7
7
  """
8
8
  ACA Premium Tax Credit phase-out rate with simplified linear progression.
9
9
 
@@ -91,7 +91,7 @@ def create_aca_ptc_simplified_bracket() -> Reform:
91
91
 
92
92
  class reform(Reform):
93
93
  def apply(self):
94
- self.update_variable(aca_ptc_phase_out_rate)
94
+ self.update_variable(aca_required_contribution_percentage)
95
95
  self.update_variable(is_aca_ptc_eligible)
96
96
 
97
97
  return reform
@@ -5,7 +5,7 @@
5
5
  is_aca_ptc_eligible: true
6
6
  slcsp: 1_200
7
7
  aca_magi: 25_000
8
- aca_ptc_phase_out_rate: 0.04
8
+ aca_required_contribution_percentage: 0.04
9
9
  output:
10
10
  aca_ptc: 200 # 1200 - 0.04 * 25000 = 200
11
11
 
@@ -16,7 +16,7 @@
16
16
  is_aca_ptc_eligible: true
17
17
  slcsp: 1_200
18
18
  aca_magi: 25_000
19
- aca_ptc_phase_out_rate: 0.05
19
+ aca_required_contribution_percentage: 0.05
20
20
  output:
21
21
  aca_ptc: 0 # 1200 - 0.05 * 25000 = -50
22
22
 
@@ -27,6 +27,6 @@
27
27
  is_aca_ptc_eligible: false
28
28
  slcsp: 1_200
29
29
  aca_magi: 25_000
30
- aca_ptc_phase_out_rate: 0.04
30
+ aca_required_contribution_percentage: 0.04
31
31
  output:
32
32
  aca_ptc: 0 # 1200 - 0.04 * 25000 = 200
@@ -0,0 +1,71 @@
1
+ - name: aca_required_contribution_percentage unit test 1
2
+ period: 2022
3
+ absolute_error_margin: 0.00001
4
+ input:
5
+ aca_magi_fraction: 1.40
6
+ output:
7
+ aca_required_contribution_percentage: 0
8
+
9
+ - name: aca_required_contribution_percentage unit test 2
10
+ period: 2022
11
+ absolute_error_margin: 0.00001
12
+ input:
13
+ aca_magi_fraction: 1.90
14
+ output:
15
+ aca_required_contribution_percentage: 0.0160
16
+
17
+ - name: aca_required_contribution_percentage unit test 3
18
+ period: 2022
19
+ absolute_error_margin: 0.00001
20
+ input:
21
+ aca_magi_fraction: 2.40
22
+ output:
23
+ aca_required_contribution_percentage: 0.0360
24
+
25
+ - name: aca_required_contribution_percentage unit test 4
26
+ period: 2022
27
+ absolute_error_margin: 0.00001
28
+ input:
29
+ aca_magi_fraction: 2.90
30
+ output:
31
+ aca_required_contribution_percentage: 0.0560
32
+
33
+ - name: aca_required_contribution_percentage unit test 5
34
+ period: 2022
35
+ absolute_error_margin: 0.00001
36
+ input:
37
+ aca_magi_fraction: 3.40
38
+ output:
39
+ aca_required_contribution_percentage: 0.0700
40
+
41
+ - name: aca_required_contribution_percentage unit test 6
42
+ period: 2022
43
+ absolute_error_margin: 0.00001
44
+ input:
45
+ aca_magi_fraction: 3.90
46
+ output:
47
+ aca_required_contribution_percentage: 0.0825
48
+
49
+ - name: aca_required_contribution_percentage unit test 7
50
+ period: 2022
51
+ absolute_error_margin: 0.00001
52
+ input:
53
+ aca_magi_fraction: 4.40
54
+ output:
55
+ aca_required_contribution_percentage: 0.0850
56
+
57
+ - name: aca_required_contribution_percentage 2025
58
+ period: 2025
59
+ absolute_error_margin: 0.00001
60
+ input:
61
+ aca_magi_fraction: 4.0
62
+ output:
63
+ aca_required_contribution_percentage: 0.0850
64
+
65
+ - name: aca_required_contribution_percentage 2026
66
+ period: 2026
67
+ absolute_error_margin: 0.00001
68
+ input:
69
+ aca_magi_fraction: 4.0
70
+ output:
71
+ aca_required_contribution_percentage: 0.0996
@@ -29,7 +29,7 @@
29
29
  is_aca_ptc_eligible: [true, true, true]
30
30
  slcsp: 15_550.90 #15,542 from 2025 kff calculator, they round more aggressively
31
31
  aca_magi_fraction: 2.90
32
- aca_ptc_phase_out_rate: 0.056
32
+ aca_required_contribution_percentage: 0.056
33
33
  aca_ptc: 11_350.90 #$11,327 from 2025 kff calculator
34
34
  #Final PTC:
35
35
  # - KFF’s result: $15,542 – $4,215 = $11,327 subsidy (annual).
@@ -30,7 +30,7 @@
30
30
  slcsp_age_curve_amount_person: [0, 5_526, 3_188]
31
31
  slcsp: 8_715.192
32
32
  aca_magi_fraction: 2.90
33
- aca_ptc_phase_out_rate: 0.056
33
+ aca_required_contribution_percentage: 0.056
34
34
  aca_ptc: 4_515.19
35
35
 
36
36
  - name: 2025 VT - one adult esi
@@ -61,5 +61,5 @@
61
61
  is_medicaid_eligible: [false, false, false]
62
62
  is_aca_ptc_eligible: [false, true, true]
63
63
  slcsp: 29_575.32
64
- aca_ptc_phase_out_rate: 0.0721
64
+ aca_required_contribution_percentage: 0.0721
65
65
  aca_ptc: 23_086.32
@@ -6,7 +6,7 @@
6
6
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
7
7
  aca_magi_fraction: 2.5
8
8
  output:
9
- aca_ptc_phase_out_rate: 0.04
9
+ aca_required_contribution_percentage: 0.04
10
10
 
11
11
  - name: Single filer at 300% FPL - uses baseline value
12
12
  period: 2026
@@ -16,7 +16,7 @@
16
16
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
17
17
  aca_magi_fraction: 3.0
18
18
  output:
19
- aca_ptc_phase_out_rate: 0.06
19
+ aca_required_contribution_percentage: 0.06
20
20
 
21
21
  - name: Single filer at 400% FPL - linear increase to 10%
22
22
  period: 2026
@@ -26,7 +26,7 @@
26
26
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
27
27
  aca_magi_fraction: 4.0
28
28
  output:
29
- aca_ptc_phase_out_rate: 0.10
29
+ aca_required_contribution_percentage: 0.10
30
30
 
31
31
  - name: Single filer at 500% FPL - linear increase to 14%
32
32
  period: 2026
@@ -36,7 +36,7 @@
36
36
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
37
37
  aca_magi_fraction: 5.0
38
38
  output:
39
- aca_ptc_phase_out_rate: 0.14
39
+ aca_required_contribution_percentage: 0.14
40
40
 
41
41
  - name: Single filer at 600% FPL - linear increase to 18%
42
42
  period: 2026
@@ -46,7 +46,7 @@
46
46
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
47
47
  aca_magi_fraction: 6.0
48
48
  output:
49
- aca_ptc_phase_out_rate: 0.18
49
+ aca_required_contribution_percentage: 0.18
50
50
 
51
51
  - name: Single filer at 350% FPL - interpolated value
52
52
  period: 2026
@@ -56,7 +56,7 @@
56
56
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
57
57
  aca_magi_fraction: 3.5
58
58
  output:
59
- aca_ptc_phase_out_rate: 0.08
59
+ aca_required_contribution_percentage: 0.08
60
60
 
61
61
  - name: Baseline comparison at 400% FPL - shows difference
62
62
  period: 2026
@@ -64,7 +64,7 @@
64
64
  input:
65
65
  aca_magi_fraction: 4.0
66
66
  output:
67
- aca_ptc_phase_out_rate: 0.0996
67
+ aca_required_contribution_percentage: 0.0996
68
68
 
69
69
  - name: Edge case - Lower boundary at 0% FPL
70
70
  period: 2026
@@ -74,7 +74,7 @@
74
74
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
75
75
  aca_magi_fraction: 0.0
76
76
  output:
77
- aca_ptc_phase_out_rate: 0.0
77
+ aca_required_contribution_percentage: 0.0
78
78
 
79
79
  - name: Edge case - Lower boundary at 150% FPL (first bracket threshold)
80
80
  period: 2026
@@ -84,7 +84,7 @@
84
84
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
85
85
  aca_magi_fraction: 1.5
86
86
  output:
87
- aca_ptc_phase_out_rate: 0.0
87
+ aca_required_contribution_percentage: 0.0
88
88
 
89
89
  - name: Edge case - First positive bracket at 200% FPL
90
90
  period: 2026
@@ -94,7 +94,7 @@
94
94
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
95
95
  aca_magi_fraction: 2.0
96
96
  output:
97
- aca_ptc_phase_out_rate: 0.02
97
+ aca_required_contribution_percentage: 0.02
98
98
 
99
99
  - name: Edge case - Upper boundary at 1000% FPL (highest defined bracket)
100
100
  period: 2026
@@ -104,7 +104,7 @@
104
104
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
105
105
  aca_magi_fraction: 10.0
106
106
  output:
107
- aca_ptc_phase_out_rate: 0.34
107
+ aca_required_contribution_percentage: 0.34
108
108
 
109
109
  - name: Edge case - Interpolation between 1.5 and 2.0 at 175% FPL
110
110
  period: 2026
@@ -114,4 +114,4 @@
114
114
  gov.contrib.aca.ptc_additional_bracket.in_effect: true
115
115
  aca_magi_fraction: 1.75
116
116
  output:
117
- aca_ptc_phase_out_rate: 0.01
117
+ aca_required_contribution_percentage: 0.01
@@ -6,7 +6,7 @@
6
6
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
7
7
  aca_magi_fraction: 1.0
8
8
  output:
9
- aca_ptc_phase_out_rate: 0.0
9
+ aca_required_contribution_percentage: 0.0
10
10
 
11
11
  - name: Single filer at 200% FPL - linear increase to 4%
12
12
  period: 2026
@@ -16,7 +16,7 @@
16
16
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
17
17
  aca_magi_fraction: 2.0
18
18
  output:
19
- aca_ptc_phase_out_rate: 0.04
19
+ aca_required_contribution_percentage: 0.04
20
20
 
21
21
  - name: Single filer at 300% FPL - linear increase to 8%
22
22
  period: 2026
@@ -26,7 +26,7 @@
26
26
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
27
27
  aca_magi_fraction: 3.0
28
28
  output:
29
- aca_ptc_phase_out_rate: 0.08
29
+ aca_required_contribution_percentage: 0.08
30
30
 
31
31
  - name: Single filer at 400% FPL - linear increase to 12%
32
32
  period: 2026
@@ -36,7 +36,7 @@
36
36
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
37
37
  aca_magi_fraction: 4.0
38
38
  output:
39
- aca_ptc_phase_out_rate: 0.12
39
+ aca_required_contribution_percentage: 0.12
40
40
 
41
41
  - name: Single filer at 500% FPL - linear increase to 16%
42
42
  period: 2026
@@ -46,7 +46,7 @@
46
46
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
47
47
  aca_magi_fraction: 5.0
48
48
  output:
49
- aca_ptc_phase_out_rate: 0.16
49
+ aca_required_contribution_percentage: 0.16
50
50
 
51
51
  - name: Single filer at 600% FPL - linear increase to 20%
52
52
  period: 2026
@@ -56,7 +56,7 @@
56
56
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
57
57
  aca_magi_fraction: 6.0
58
58
  output:
59
- aca_ptc_phase_out_rate: 0.20
59
+ aca_required_contribution_percentage: 0.20
60
60
 
61
61
  - name: Single filer at 150% FPL - interpolated value
62
62
  period: 2026
@@ -66,7 +66,7 @@
66
66
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
67
67
  aca_magi_fraction: 1.5
68
68
  output:
69
- aca_ptc_phase_out_rate: 0.02
69
+ aca_required_contribution_percentage: 0.02
70
70
 
71
71
  - name: Baseline comparison at 400% FPL - shows difference
72
72
  period: 2026
@@ -74,7 +74,7 @@
74
74
  input:
75
75
  aca_magi_fraction: 4.0
76
76
  output:
77
- aca_ptc_phase_out_rate: 0.0996
77
+ aca_required_contribution_percentage: 0.0996
78
78
 
79
79
  - name: Edge case - Lower boundary at 0% FPL
80
80
  period: 2026
@@ -84,7 +84,7 @@
84
84
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
85
85
  aca_magi_fraction: 0.0
86
86
  output:
87
- aca_ptc_phase_out_rate: 0.0
87
+ aca_required_contribution_percentage: 0.0
88
88
 
89
89
  - name: Edge case - Upper boundary at 1000% FPL
90
90
  period: 2026
@@ -94,7 +94,7 @@
94
94
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
95
95
  aca_magi_fraction: 10.0
96
96
  output:
97
- aca_ptc_phase_out_rate: 0.36
97
+ aca_required_contribution_percentage: 0.36
98
98
 
99
99
  - name: Edge case - Interpolation between 1.0 and 2.0 at 175% FPL
100
100
  period: 2026
@@ -104,7 +104,7 @@
104
104
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
105
105
  aca_magi_fraction: 1.75
106
106
  output:
107
- aca_ptc_phase_out_rate: 0.03
107
+ aca_required_contribution_percentage: 0.03
108
108
 
109
109
  - name: Comparison with additional bracket reform at 600% FPL
110
110
  period: 2026
@@ -114,4 +114,4 @@
114
114
  gov.contrib.aca.ptc_simplified_bracket.in_effect: true
115
115
  aca_magi_fraction: 6.0
116
116
  output:
117
- aca_ptc_phase_out_rate: 0.20
117
+ aca_required_contribution_percentage: 0.20
@@ -13,7 +13,9 @@ class aca_ptc(Variable):
13
13
  def formula(tax_unit, period, parameters):
14
14
  plan_cost = tax_unit("slcsp", period)
15
15
  income = tax_unit("aca_magi", period)
16
- applicable_figure = tax_unit("aca_ptc_phase_out_rate", period)
16
+ applicable_figure = tax_unit(
17
+ "aca_required_contribution_percentage", period
18
+ )
17
19
  takes_up_aca_if_eligible = tax_unit("takes_up_aca_if_eligible", period)
18
20
  return (
19
21
  max_(0, plan_cost - income * applicable_figure)
@@ -1,7 +1,7 @@
1
1
  from policyengine_us.model_api import *
2
2
 
3
3
 
4
- class aca_ptc_phase_out_rate(Variable):
4
+ class aca_required_contribution_percentage(Variable):
5
5
  value_type = float
6
6
  entity = TaxUnit
7
7
  label = "ACA PTC phase-out rate (i.e., IRS Form 8962 'applicable figure')"
@@ -11,5 +11,5 @@ class aca_ptc_phase_out_rate(Variable):
11
11
 
12
12
  def formula(tax_unit, period, parameters):
13
13
  magi_frac = tax_unit("aca_magi_fraction", period)
14
- p = parameters(period).gov.aca.ptc_phase_out_rate
14
+ p = parameters(period).gov.aca.required_contribution_percentage
15
15
  return np.interp(magi_frac, p.thresholds, p.amounts)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: policyengine-us
3
- Version: 1.425.4
3
+ Version: 1.425.5
4
4
  Summary: Add your description here.
5
5
  Author-email: PolicyEngine <hello@policyengine.org>
6
6
  License-File: LICENSE
@@ -84,7 +84,7 @@ policyengine_us/parameters/gov/aca/ineligible_immigration_statuses.yaml,sha256=f
84
84
  policyengine_us/parameters/gov/aca/la_county_rating_area.yaml,sha256=DeMrNznf1drSArrtJyVPRDxEl6jekCMHMENCxO8rvtQ,847
85
85
  policyengine_us/parameters/gov/aca/max_child_count.yaml,sha256=jCAERTNElBGb925Jl86PeNchXYiuZDZFbMaIpTnOnbM,1290
86
86
  policyengine_us/parameters/gov/aca/ptc_income_eligibility.yaml,sha256=h_oDrZjlSqpzW1hA4pEC8-KkCjZItub9II0ePrMo3zs,975
87
- policyengine_us/parameters/gov/aca/ptc_phase_out_rate.yaml,sha256=FIr-X7XcZIMiCTb4w9_PJOGt2u2_GQnULLYRVtaXb1M,2034
87
+ policyengine_us/parameters/gov/aca/required_contribution_percentage.yaml,sha256=FIr-X7XcZIMiCTb4w9_PJOGt2u2_GQnULLYRVtaXb1M,2034
88
88
  policyengine_us/parameters/gov/aca/state_rating_area_cost.yaml,sha256=9pUqkuDkUsXAGVbkbSo8DoDZD3MjWuYlediUL-0wF90,14978
89
89
  policyengine_us/parameters/gov/aca/takeup_rate.yaml,sha256=IlzV1dCi3ZBDu_KmmPTEDKyTR9XyFbCCcVNXA1TVeZQ,548
90
90
  policyengine_us/parameters/gov/aca/age_curves/al.yaml,sha256=0DjOv1_XvcOpoFD9RaygdkbSG8MQnVLZTEoTNjKMiLA,3200
@@ -3305,8 +3305,8 @@ policyengine_us/reforms/reforms.py,sha256=q9KRV14JY9yOjuMbtamOeoJdgkvWcmG6rLIn_f
3305
3305
  policyengine_us/reforms/taxsim.py,sha256=bXNFWfjBX5USld1C7fziT6BBmRy-avz00QtL8WmCHy0,5276
3306
3306
  policyengine_us/reforms/winship.py,sha256=_q74Af1nkmoh0-M6PZJ2FcJAn6v5zf5sAEgvxjwHwyA,3069
3307
3307
  policyengine_us/reforms/aca/__init__.py,sha256=ugTekuQuCQw7EScXFCp5U3NSKhut8wIrrJK-1Y0aL9Q,234
3308
- policyengine_us/reforms/aca/aca_ptc_additional_bracket.py,sha256=5mKi79SH49qQ-khd-kGDvASB0ftkPE3Z41HgNwSfWBE,4651
3309
- policyengine_us/reforms/aca/aca_ptc_simplified_bracket.py,sha256=K4QEFYd3Vm1k1VG4RPrA6zqF3QVtfhC_E4AvU22B_BU,4649
3308
+ policyengine_us/reforms/aca/aca_ptc_additional_bracket.py,sha256=c6C57ztT7fYot2EJain6uuqEow6UusZlMrjfLMxlkNg,4679
3309
+ policyengine_us/reforms/aca/aca_ptc_simplified_bracket.py,sha256=udcV1lTVDsk3edTZEyNbzDhQ0cOtepja_p-EAWDCQzQ,4677
3310
3310
  policyengine_us/reforms/additional_tax_bracket/__init__.py,sha256=087GDzojnzkbARUgGTQDMNVWJzjtNZvBGr46jfu1kXc,89
3311
3311
  policyengine_us/reforms/additional_tax_bracket/additional_tax_bracket_reform.py,sha256=Re2jBANvgcxIvPhh8Du2MOCgLkozrewKxySa8jrSx3Y,5552
3312
3312
  policyengine_us/reforms/biden/budget_2025/__init__.py,sha256=SSq5Hex7oz6EglxhWMr7W0mvRBFBTS4WN76VzasQgl4,201
@@ -3415,10 +3415,10 @@ policyengine_us/tests/policy/baseline/gov/aca/eligibility/is_aca_eshi_eligible.y
3415
3415
  policyengine_us/tests/policy/baseline/gov/aca/eligibility/is_aca_ptc_eligible.yaml,sha256=WUZpJ0UUi5Ppuxb-OMu3qVMnHHBIN9xhDI3u2XLlcck,2608
3416
3416
  policyengine_us/tests/policy/baseline/gov/aca/eligibility/is_aca_ptc_immigration_status_eligible.yaml,sha256=aqBy1o5JE7uqfPEracAm6DTxIGnmVrzVU9oNkIwj8ZA,805
3417
3417
  policyengine_us/tests/policy/baseline/gov/aca/eligibility/sbn_los_angeles.yaml,sha256=YXuwDlXpqWtYlDPl_TOKklSejXsdvJwA2Vt4aa0YWw8,17929
3418
- policyengine_us/tests/policy/baseline/gov/aca/ptc/aca_ptc.yaml,sha256=ZFzzbOb3npjZ7SnVVLTug9OBRgFI4_yDvls9H88nrQg,716
3419
- policyengine_us/tests/policy/baseline/gov/aca/ptc/aca_ptc_phase_out_rate.yaml,sha256=EPboCKXzT_SK8tkgRnPk6aPkpwF_RISdyTjyo85351Y,1544
3420
- policyengine_us/tests/policy/baseline/gov/aca/ptc/integration.yaml,sha256=cyDpxhOa_Bl9MH8Y2FZySYJElE48_p_vW2T7kCIfQeM,2085
3421
- policyengine_us/tests/policy/baseline/gov/aca/ptc/separate_esi.yaml,sha256=qc5ffgJgeV0ZB8h6JKA4sNuma160ygvuvrxAAUoyszI,1877
3418
+ policyengine_us/tests/policy/baseline/gov/aca/ptc/aca_ptc.yaml,sha256=QCdzpUYpvIyirqaonYh-t21XCB3u-9s4beXUDoLQbzo,758
3419
+ policyengine_us/tests/policy/baseline/gov/aca/ptc/aca_required_contribution_percentage.yaml,sha256=HbBo39rPzsfX61oUCYQzfFyusRYuJvokN26psnyKZmo,1796
3420
+ policyengine_us/tests/policy/baseline/gov/aca/ptc/integration.yaml,sha256=9qEydNUDtZDgZFswbK29e2zjDVpLoXi8tSpp5asKvN0,2099
3421
+ policyengine_us/tests/policy/baseline/gov/aca/ptc/separate_esi.yaml,sha256=19T8cpe0qH9U69YZcitFbgRqbv_DUggNOeKinYw_jkQ,1905
3422
3422
  policyengine_us/tests/policy/baseline/gov/aca/ptc/takes_up_aca_if_eligible.yaml,sha256=Wv1TWclv2y2_HMALmhe4bGWtLFNgAREE9w61a7BlxGc,254
3423
3423
  policyengine_us/tests/policy/baseline/gov/aca/slcsp/family_tier_applies.yaml,sha256=8ARRKOiRl0VT-fiqbxqATFt0NDvyvt8pC476zhJcwG8,285
3424
3424
  policyengine_us/tests/policy/baseline/gov/aca/slcsp/family_tier_category.yaml,sha256=y_wt3KYw2h9GO1px69OTqpNJ8a_rQ61q7PuV_45BMUs,3999
@@ -5504,8 +5504,8 @@ policyengine_us/tests/policy/baseline/parameters/test_uprating_extensions.py,sha
5504
5504
  policyengine_us/tests/policy/contrib/dc_kccatc.yaml,sha256=v4woAJveF3mZH6d4W3xAYlejcTIHTEQZM4nnenGNq-8,1786
5505
5505
  policyengine_us/tests/policy/contrib/dc_single_joint_threshold_ratio.yaml,sha256=vDMmkKdvjCtR8uweKDptp1gt05OI78Pm7GoIL0Apxxg,632
5506
5506
  policyengine_us/tests/policy/contrib/reported_state_income_tax.yaml,sha256=697RFAYWbmvD4LdQA-RHnIJ8nuu9wwEc2IRejdJ4QAQ,232
5507
- policyengine_us/tests/policy/contrib/aca/ptc_additional_bracket.yaml,sha256=caSMB8FyL5SRJG0_6eghvwzm6u5HEGYUj5FXSOExzz8,3919
5508
- policyengine_us/tests/policy/contrib/aca/ptc_simplified_bracket.yaml,sha256=nYCkavhnOl3BR7BvIYDF57wIqdsnR14YQuqVnnhw_2s,3879
5507
+ policyengine_us/tests/policy/contrib/aca/ptc_additional_bracket.yaml,sha256=vn0Ge-7GgcgiG6wyBohBCegn6z_vwJoZ3wP1AC5egso,4087
5508
+ policyengine_us/tests/policy/contrib/aca/ptc_simplified_bracket.yaml,sha256=Sx6_ChudUhRMSzaoIYJV0nlQ3F6gqtBqUcY1Cah8DiU,4047
5509
5509
  policyengine_us/tests/policy/contrib/additional_tax_bracket/additional_tax_bracket_reform.yaml,sha256=dcc7MxY9lObBg3hTinR17F0C8KoQ_6fxZ4KparY6Iuo,2009
5510
5510
  policyengine_us/tests/policy/contrib/congress/american_family_act_with_baby_bonus.yaml,sha256=Vb1aAv8od1NQdvD7FaqDeVhEn5IuP76SDIJTK1kM1x4,1372
5511
5511
  policyengine_us/tests/policy/contrib/congress/wftca.yaml,sha256=NWN1tx6GBH3_e-qy5bQfLJj8Bdf9YIepiN0ZI_QDoMY,621
@@ -5646,8 +5646,8 @@ policyengine_us/variables/gov/aca/eligibility/is_aca_eshi_eligible.py,sha256=K6Q
5646
5646
  policyengine_us/variables/gov/aca/eligibility/is_aca_ptc_eligible.py,sha256=WN14x6b3dz14BF6QWDr6Cd9wqZkwzR2QwW2VLHyJwVg,1719
5647
5647
  policyengine_us/variables/gov/aca/eligibility/is_aca_ptc_immigration_status_eligible.py,sha256=uCopq-6BDphQ8yZb05vY8J900asi39hVVr0wqL4rJJw,670
5648
5648
  policyengine_us/variables/gov/aca/eligibility/offered_aca_disqualifying_esi.py,sha256=dV_1r9IEXc0BAW1IJzTiug6mqFINBq7f7cyQqiO7ep8,214
5649
- policyengine_us/variables/gov/aca/ptc/aca_ptc.py,sha256=Dlcnl5kgSICf7n0wx3HQdE_8yqnzJbKmGF6yJPI-gtA,727
5650
- policyengine_us/variables/gov/aca/ptc/aca_ptc_phase_out_rate.py,sha256=AATBaTcrPMc__2ze2XSRZpn--foFkEYy_ImJke_t8EU,546
5649
+ policyengine_us/variables/gov/aca/ptc/aca_ptc.py,sha256=fSTpNyRJhYbERZpy0en1pH5-Na3OTbw38dbLw3i6FhM,763
5650
+ policyengine_us/variables/gov/aca/ptc/aca_required_contribution_percentage.py,sha256=it6CXj1giI5ocXTz7mV93RpyAiD_auh1vhJkb8xcHIY,574
5651
5651
  policyengine_us/variables/gov/aca/ptc/premium_tax_credit.py,sha256=_JLoosn8oXqP1CM0mhOqFzO5zb3gqN3B1SH-1I82wWI,244
5652
5652
  policyengine_us/variables/gov/aca/slspc/slcsp.py,sha256=JnG6DtkuEWrTVsAaL6uYBSTpuua4ziVyrahbaGWQnK8,276
5653
5653
  policyengine_us/variables/gov/aca/slspc/slcsp_age_0.py,sha256=YqLR_OLUx24ChEs3lyidtgva3c-_j7962-eGRJ8G5NU,706
@@ -8842,8 +8842,8 @@ policyengine_us/variables/input/farm_income.py,sha256=BEKxYmHNNnWJAAvULl5qZJigy5
8842
8842
  policyengine_us/variables/input/geography.py,sha256=Ux0ueAf0rhZaflyEqz81UuXP3xKCKBDvoO3CrKhiQEc,5421
8843
8843
  policyengine_us/variables/input/self_employment_income.py,sha256=PwsGz8R4lRikKWUYOhsC0qosNNLXq4f5SQmfw4S3mk8,511
8844
8844
  policyengine_us/variables/input/self_employment_income_before_lsr.py,sha256=E8fcX9Nlyqz8dziHhQv_euutdmoIwFMMWePUwbbwv_w,379
8845
- policyengine_us-1.425.4.dist-info/METADATA,sha256=porYlShy3Vef-UTj4DIXE9yXxbG72GBvIs0X6zYr6us,1649
8846
- policyengine_us-1.425.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
8847
- policyengine_us-1.425.4.dist-info/entry_points.txt,sha256=MLaqNyNTbReALyKNkde85VkuFFpdPWAcy8VRG1mjczc,57
8848
- policyengine_us-1.425.4.dist-info/licenses/LICENSE,sha256=2N5ReRelkdqkR9a-KP-y-shmcD5P62XoYiG-miLTAzo,34519
8849
- policyengine_us-1.425.4.dist-info/RECORD,,
8845
+ policyengine_us-1.425.5.dist-info/METADATA,sha256=vCSAObS7QI9Xs96uIDZTjG2p-RvGhUeM71JQcmRK7BQ,1649
8846
+ policyengine_us-1.425.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
8847
+ policyengine_us-1.425.5.dist-info/entry_points.txt,sha256=MLaqNyNTbReALyKNkde85VkuFFpdPWAcy8VRG1mjczc,57
8848
+ policyengine_us-1.425.5.dist-info/licenses/LICENSE,sha256=2N5ReRelkdqkR9a-KP-y-shmcD5P62XoYiG-miLTAzo,34519
8849
+ policyengine_us-1.425.5.dist-info/RECORD,,
@@ -1,71 +0,0 @@
1
- - name: aca_ptc_phase_out_rate unit test 1
2
- period: 2022
3
- absolute_error_margin: 0.00001
4
- input:
5
- aca_magi_fraction: 1.40
6
- output:
7
- aca_ptc_phase_out_rate: 0
8
-
9
- - name: aca_ptc_phase_out_rate unit test 2
10
- period: 2022
11
- absolute_error_margin: 0.00001
12
- input:
13
- aca_magi_fraction: 1.90
14
- output:
15
- aca_ptc_phase_out_rate: 0.0160
16
-
17
- - name: aca_ptc_phase_out_rate unit test 3
18
- period: 2022
19
- absolute_error_margin: 0.00001
20
- input:
21
- aca_magi_fraction: 2.40
22
- output:
23
- aca_ptc_phase_out_rate: 0.0360
24
-
25
- - name: aca_ptc_phase_out_rate unit test 4
26
- period: 2022
27
- absolute_error_margin: 0.00001
28
- input:
29
- aca_magi_fraction: 2.90
30
- output:
31
- aca_ptc_phase_out_rate: 0.0560
32
-
33
- - name: aca_ptc_phase_out_rate unit test 5
34
- period: 2022
35
- absolute_error_margin: 0.00001
36
- input:
37
- aca_magi_fraction: 3.40
38
- output:
39
- aca_ptc_phase_out_rate: 0.0700
40
-
41
- - name: aca_ptc_phase_out_rate unit test 6
42
- period: 2022
43
- absolute_error_margin: 0.00001
44
- input:
45
- aca_magi_fraction: 3.90
46
- output:
47
- aca_ptc_phase_out_rate: 0.0825
48
-
49
- - name: aca_ptc_phase_out_rate unit test 7
50
- period: 2022
51
- absolute_error_margin: 0.00001
52
- input:
53
- aca_magi_fraction: 4.40
54
- output:
55
- aca_ptc_phase_out_rate: 0.0850
56
-
57
- - name: aca_ptc_phase_out_rate 2025
58
- period: 2025
59
- absolute_error_margin: 0.00001
60
- input:
61
- aca_magi_fraction: 4.0
62
- output:
63
- aca_ptc_phase_out_rate: 0.0850
64
-
65
- - name: aca_ptc_phase_out_rate 2026
66
- period: 2026
67
- absolute_error_margin: 0.00001
68
- input:
69
- aca_magi_fraction: 4.0
70
- output:
71
- aca_ptc_phase_out_rate: 0.0996