taxcalc 4.4.1__py3-none-any.whl → 4.6.0__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 +15 -15
- taxcalc/cli/tc.py +192 -109
- taxcalc/consumption.json +1 -1
- taxcalc/cps_weights.csv.gz +0 -0
- taxcalc/growdiff.json +1 -1
- taxcalc/growfactors.csv +26 -25
- taxcalc/policy.py +4 -13
- taxcalc/policy_current_law.json +90 -90
- taxcalc/puf_ratios.csv +15 -14
- taxcalc/puf_weights.csv.gz +0 -0
- taxcalc/reforms/ext.json +25 -22
- taxcalc/taxcalcio.py +285 -298
- taxcalc/tests/conftest.py +1 -1
- taxcalc/tests/cpscsv_agg_expect.csv +22 -22
- taxcalc/tests/puf_var_wght_means_by_year.csv +70 -70
- taxcalc/tests/pufcsv_agg_expect.csv +22 -22
- taxcalc/tests/test_4package.py +1 -0
- taxcalc/tests/test_calculator.py +2 -2
- taxcalc/tests/test_compare.py +1 -1
- taxcalc/tests/test_parameters.py +1 -1
- taxcalc/tests/test_reforms.py +1 -1
- taxcalc/tests/test_taxcalcio.py +86 -107
- taxcalc/utils.py +4 -10
- {taxcalc-4.4.1.dist-info → taxcalc-4.6.0.dist-info}/METADATA +3 -2
- {taxcalc-4.4.1.dist-info → taxcalc-4.6.0.dist-info}/RECORD +31 -31
- {taxcalc-4.4.1.dist-info → taxcalc-4.6.0.dist-info}/WHEEL +1 -1
- {taxcalc-4.4.1.dist-info → taxcalc-4.6.0.dist-info}/entry_points.txt +0 -0
- {taxcalc-4.4.1.dist-info → taxcalc-4.6.0.dist-info/licenses}/LICENSE +0 -0
- {taxcalc-4.4.1.dist-info → taxcalc-4.6.0.dist-info}/top_level.txt +0 -0
taxcalc/reforms/ext.json
CHANGED
@@ -1,45 +1,48 @@
|
|
1
1
|
// REFORM TO EXTEND TEMPORARY TCJA PROVISIONS BEYOND 2025
|
2
|
-
// USING TAX-CALCULATOR 4.
|
3
|
-
// WITH 2025-to-2026 INDEXING FACTOR = 1.
|
4
|
-
// AND 2028-to-2029 INDEXING FACTOR = 1.
|
2
|
+
// USING TAX-CALCULATOR 4.5.0
|
3
|
+
// WITH 2025-to-2026 INDEXING FACTOR = 1.022300
|
4
|
+
// AND 2028-to-2029 INDEXING FACTOR = 1.022600
|
5
5
|
{
|
6
6
|
"II_rt1": {"2026": 0.10},
|
7
|
-
"II_brk1": {"2026": [
|
7
|
+
"II_brk1": {"2026": [12190.93, 24381.86, 12190.93, 17379.1, 24381.86]},
|
8
8
|
"PT_rt1": {"2026": 0.10},
|
9
|
-
"PT_brk1": {"2026": [
|
9
|
+
"PT_brk1": {"2026": [12190.93, 24381.86, 12190.93, 17379.1, 24381.86]},
|
10
10
|
"II_rt2": {"2026": 0.12},
|
11
|
-
"II_brk2": {"2026": [
|
11
|
+
"II_brk2": {"2026": [49555.99, 99111.98, 49555.99, 66296.16, 99111.98]},
|
12
12
|
"PT_rt2": {"2026": 0.12},
|
13
|
-
"PT_brk2": {"2026": [
|
13
|
+
"PT_brk2": {"2026": [49555.99, 99111.98, 49555.99, 66296.16, 99111.98]},
|
14
14
|
"II_rt3": {"2026": 0.22},
|
15
|
-
"II_brk3": {"2026": [
|
15
|
+
"II_brk3": {"2026": [105654.7, 211309.41, 105654.7, 105654.7, 211309.41]},
|
16
16
|
"PT_rt3": {"2026": 0.22},
|
17
|
-
"PT_brk3": {"2026": [
|
17
|
+
"PT_brk3": {"2026": [105654.7, 211309.41, 105654.7, 105654.7, 211309.41]},
|
18
18
|
"II_rt4": {"2026": 0.24},
|
19
|
-
"II_brk4": {"2026": [
|
19
|
+
"II_brk4": {"2026": [201699.79, 403399.58, 201699.79, 201699.79, 403399.58]},
|
20
20
|
"PT_rt4": {"2026": 0.24},
|
21
|
-
"PT_brk4": {"2026": [
|
21
|
+
"PT_brk4": {"2026": [201699.79, 403399.58, 201699.79, 201699.79, 403399.58]},
|
22
22
|
"II_rt5": {"2026": 0.32},
|
23
|
-
"II_brk5": {"2026": [
|
23
|
+
"II_brk5": {"2026": [256111.71, 512223.42, 256111.71, 256086.15, 512223.42]},
|
24
24
|
"PT_rt5": {"2026": 0.32},
|
25
|
-
"PT_brk5": {"2026": [
|
25
|
+
"PT_brk5": {"2026": [256111.71, 512223.42, 256111.71, 256086.15, 512223.42]},
|
26
26
|
"II_rt6": {"2026": 0.35},
|
27
|
-
"II_brk6": {"2026": [
|
27
|
+
"II_brk6": {"2026": [640317.6, 768360.68, 384180.34, 640317.6, 768360.68]},
|
28
28
|
"PT_rt6": {"2026": 0.35},
|
29
|
-
"PT_brk6": {"2026": [
|
29
|
+
"PT_brk6": {"2026": [640317.6, 768360.68, 384180.34, 640317.6, 768360.68]},
|
30
30
|
"II_rt7": {"2026": 0.37},
|
31
31
|
"II_brk7": {"2026": [9e+99, 9e+99, 9e+99, 9e+99, 9e+99]},
|
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},
|
39
|
-
"AMT_em": {"2026": [
|
40
|
-
"AMT_em_ps": {"2026": [
|
41
|
-
"AMT_em_pe": {"2026":
|
42
|
-
"STD": {"2026": [
|
42
|
+
"AMT_em": {"2026": [90064.63, 140055.1, 70027.55, 90064.63, 140055.1]},
|
43
|
+
"AMT_em_ps": {"2026": [640317.6, 1280635.21, 640317.6, 640317.6, 1280635.21]},
|
44
|
+
"AMT_em_pe": {"2026": 940953.35},
|
45
|
+
"STD": {"2026": [15334.5, 30669.0, 15334.5, 23001.75, 30669.0]},
|
43
46
|
"ID_AllTaxes_c": {"2026": [10000.0, 10000.0, 5000.0, 10000.0, 10000.0]},
|
44
47
|
"ID_Charity_crt_cash": {"2026": 0.60},
|
45
48
|
"ID_Casualty_hc": {"2026": 1.00},
|
@@ -50,10 +53,10 @@
|
|
50
53
|
"II_em": {"2026": 0.00},
|
51
54
|
"II_em_ps": {"2026": [9e+99, 9e+99, 9e+99, 9e+99, 9e+99]},
|
52
55
|
"PT_qbid_rt": {"2026": 0.20},
|
53
|
-
"PT_qbid_taxinc_thd": {"2026": [
|
56
|
+
"PT_qbid_taxinc_thd": {"2026": [201699.79, 403399.58, 201699.79, 201699.79, 201699.79]},
|
54
57
|
"PT_qbid_taxinc_gap": {"2026": [50000.0, 100000.0, 50000.0, 50000.0, 100000.0]},
|
55
58
|
"PT_qbid_w2_wages_rt": {"2026": 0.50},
|
56
59
|
"PT_qbid_alt_w2_wages_rt": {"2026": 0.25},
|
57
60
|
"PT_qbid_alt_property_rt": {"2026": 0.03},
|
58
|
-
"ALD_BusinessLosses_c": {"2029": [
|
61
|
+
"ALD_BusinessLosses_c": {"2029": [342904.94, 685809.88, 342904.94, 342904.94, 685809.88]}
|
59
62
|
}
|