taxcalc 4.5.0__py3-none-any.whl → 4.6.1__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.
- taxcalc/__init__.py +1 -1
- taxcalc/calcfunctions.py +2 -6
- taxcalc/calculator.py +18 -18
- taxcalc/cli/tc.py +251 -118
- taxcalc/data.py +2 -2
- taxcalc/parameters.py +0 -5
- taxcalc/policy.py +3 -12
- taxcalc/policy_current_law.json +7 -3
- taxcalc/reforms/ext.json +5 -2
- taxcalc/taxcalcio.py +350 -325
- taxcalc/tests/test_4package.py +1 -0
- taxcalc/tests/test_calculator.py +3 -3
- taxcalc/tests/test_reforms.py +8 -8
- taxcalc/tests/test_taxcalcio.py +78 -120
- taxcalc/utils.py +4 -10
- {taxcalc-4.5.0.dist-info → taxcalc-4.6.1.dist-info}/METADATA +3 -2
- {taxcalc-4.5.0.dist-info → taxcalc-4.6.1.dist-info}/RECORD +21 -21
- {taxcalc-4.5.0.dist-info → taxcalc-4.6.1.dist-info}/WHEEL +1 -1
- {taxcalc-4.5.0.dist-info → taxcalc-4.6.1.dist-info}/entry_points.txt +0 -0
- {taxcalc-4.5.0.dist-info → taxcalc-4.6.1.dist-info/licenses}/LICENSE +0 -0
- {taxcalc-4.5.0.dist-info → taxcalc-4.6.1.dist-info}/top_level.txt +0 -0
taxcalc/policy_current_law.json
CHANGED
@@ -76,9 +76,9 @@
|
|
76
76
|
}
|
77
77
|
},
|
78
78
|
"parameter_indexing_CPI_offset": {
|
79
|
-
"title": "Decimal offset
|
80
|
-
"description": "
|
81
|
-
"notes": "
|
79
|
+
"title": "Decimal offset added to chained CPI-U inflation rate to get policy parameter indexing rate",
|
80
|
+
"description": "Always zero in policy_current_law.json, but non-zero values are allowed in reforms.",
|
81
|
+
"notes": "",
|
82
82
|
"section_1": "Parameter Indexing",
|
83
83
|
"section_2": "Offsets",
|
84
84
|
"indexable": false,
|
@@ -104,6 +104,10 @@
|
|
104
104
|
{
|
105
105
|
"year": 2017,
|
106
106
|
"value": 0.0
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"year": 2018,
|
110
|
+
"value": 0.0
|
107
111
|
}
|
108
112
|
],
|
109
113
|
"validators": {
|
taxcalc/reforms/ext.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
// REFORM TO EXTEND TEMPORARY TCJA PROVISIONS BEYOND 2025
|
2
|
-
// USING TAX-CALCULATOR 4.
|
2
|
+
// USING TAX-CALCULATOR 4.5.0
|
3
3
|
// WITH 2025-to-2026 INDEXING FACTOR = 1.022300
|
4
4
|
// AND 2028-to-2029 INDEXING FACTOR = 1.022600
|
5
5
|
{
|
@@ -32,7 +32,10 @@
|
|
32
32
|
"PT_rt7": {"2026": 0.37},
|
33
33
|
"PT_brk7": {"2026": [9e+99, 9e+99, 9e+99, 9e+99, 9e+99]},
|
34
34
|
"CTC_c": {"2026": 2000.00},
|
35
|
-
"ACTC_c": {"2026":
|
35
|
+
"ACTC_c": {"2026": 1776.67},
|
36
|
+
"ACTC_c-indexed": {"2026": true},
|
37
|
+
"ACTC_c": {"2032": 2000.00},
|
38
|
+
"ACTC_c-indexed": {"2032": false},
|
36
39
|
"ODC_c": {"2026": 500.00},
|
37
40
|
"CTC_ps": {"2026": [200000.0, 400000.0, 200000.0, 200000.0, 400000.0]},
|
38
41
|
"ACTC_Income_thd": {"2026": 2500.00},
|