taxcalc 4.6.3__py3-none-any.whl → 5.0.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 +54 -459
- taxcalc/calculator.py +9 -7
- taxcalc/parameters.py +0 -3
- taxcalc/policy.py +37 -30
- taxcalc/policy_current_law.json +736 -4554
- taxcalc/records_variables.json +0 -40
- taxcalc/reforms/2017_law.json +1 -15
- taxcalc/reforms/Larson2019.json +3 -3
- taxcalc/reforms/TCJA.json +2 -30
- taxcalc/reforms/Trump2016.json +1 -16
- taxcalc/reforms/Trump2017.json +1 -10
- taxcalc/reforms/ext.json +1 -15
- taxcalc/tests/conftest.py +2 -2
- taxcalc/tests/pufcsv_agg_expect.csv +2 -2
- taxcalc/tests/reforms.json +36 -88
- taxcalc/tests/reforms_expect.csv +32 -35
- taxcalc/tests/test_calcfunctions.py +1 -1
- taxcalc/tests/test_calculator.py +9 -81
- taxcalc/tests/test_compatible_data.py +0 -6
- taxcalc/tests/test_parameters.py +4 -0
- taxcalc/tests/test_policy.py +4 -30
- taxcalc/tests/test_pufcsv.py +0 -56
- taxcalc/tests/test_reforms.py +2 -2
- taxcalc/tests/test_utils.py +59 -59
- {taxcalc-4.6.3.dist-info → taxcalc-5.0.0.dist-info}/METADATA +1 -1
- {taxcalc-4.6.3.dist-info → taxcalc-5.0.0.dist-info}/RECORD +31 -31
- {taxcalc-4.6.3.dist-info → taxcalc-5.0.0.dist-info}/WHEEL +0 -0
- {taxcalc-4.6.3.dist-info → taxcalc-5.0.0.dist-info}/entry_points.txt +0 -0
- {taxcalc-4.6.3.dist-info → taxcalc-5.0.0.dist-info}/licenses/LICENSE +0 -0
- {taxcalc-4.6.3.dist-info → taxcalc-5.0.0.dist-info}/top_level.txt +0 -0
taxcalc/tests/test_pufcsv.py
CHANGED
@@ -272,62 +272,6 @@ def test_mtr(tests_path, puf_path):
|
|
272
272
|
raise ValueError(msg)
|
273
273
|
|
274
274
|
|
275
|
-
@pytest.mark.requires_pufcsv
|
276
|
-
def test_mtr_pt_active(puf_subsample):
|
277
|
-
"""
|
278
|
-
Test whether including wages in active income causes
|
279
|
-
MTRs on e00900p and e26270 to be less than -1 (i.e., -100%)
|
280
|
-
"""
|
281
|
-
# pylint: disable=too-many-locals
|
282
|
-
rec = Records(data=puf_subsample)
|
283
|
-
reform_year = 2018
|
284
|
-
# create current-law Calculator object, calc1
|
285
|
-
pol1 = Policy()
|
286
|
-
calc1 = Calculator(policy=pol1, records=rec)
|
287
|
-
calc1.advance_to_year(reform_year)
|
288
|
-
calc1.calc_all()
|
289
|
-
mtr1_e00900p = calc1.mtr('e00900p')[2]
|
290
|
-
mtr1_e26270 = calc1.mtr('e26270')[2]
|
291
|
-
assert min(mtr1_e00900p) > -1
|
292
|
-
assert min(mtr1_e26270) > -1
|
293
|
-
# change PT rates, calc2
|
294
|
-
reform2 = {'PT_rt7': {reform_year: 0.35}}
|
295
|
-
pol2 = Policy()
|
296
|
-
pol2.implement_reform(reform2)
|
297
|
-
calc2 = Calculator(policy=pol2, records=rec)
|
298
|
-
calc2.advance_to_year(reform_year)
|
299
|
-
calc2.calc_all()
|
300
|
-
mtr2_e00900p = calc2.mtr('e00900p')[2]
|
301
|
-
mtr2_e26270 = calc2.mtr('e26270')[2]
|
302
|
-
assert min(mtr2_e00900p) > -1
|
303
|
-
assert min(mtr2_e26270) > -1
|
304
|
-
# change PT_wages_active_income
|
305
|
-
reform3 = {'PT_wages_active_income': {reform_year: True}}
|
306
|
-
pol3 = Policy()
|
307
|
-
pol3.implement_reform(reform3)
|
308
|
-
calc3 = Calculator(policy=pol3, records=rec)
|
309
|
-
calc3.advance_to_year(reform_year)
|
310
|
-
calc3.calc_all()
|
311
|
-
mtr3_e00900p = calc3.mtr('e00900p')[2]
|
312
|
-
mtr3_e26270 = calc3.mtr('e26270')[2]
|
313
|
-
assert min(mtr3_e00900p) > -1
|
314
|
-
assert min(mtr3_e26270) > -1
|
315
|
-
# change PT rates and PT_wages_active_income
|
316
|
-
reform4 = {
|
317
|
-
'PT_wages_active_income': {reform_year: True},
|
318
|
-
'PT_rt7': {reform_year: 0.35}
|
319
|
-
}
|
320
|
-
pol4 = Policy()
|
321
|
-
pol4.implement_reform(reform4)
|
322
|
-
calc4 = Calculator(policy=pol4, records=rec)
|
323
|
-
calc4.advance_to_year(reform_year)
|
324
|
-
calc4.calc_all()
|
325
|
-
mtr4_e00900p = calc4.mtr('e00900p')[2]
|
326
|
-
mtr4_e26270 = calc4.mtr('e26270')[2]
|
327
|
-
assert min(mtr4_e00900p) > -1
|
328
|
-
assert min(mtr4_e26270) > -1
|
329
|
-
|
330
|
-
|
331
275
|
@pytest.mark.requires_pufcsv
|
332
276
|
def test_credit_reforms(puf_subsample):
|
333
277
|
"""
|
taxcalc/tests/test_reforms.py
CHANGED
@@ -37,7 +37,7 @@ def test_2017_law_reform(tests_path):
|
|
37
37
|
# relation '>' implies asserting that actual > expect
|
38
38
|
# ... parameters not affected by TCJA and that are not indexed
|
39
39
|
'AMEDT_ec': {'relation': '=', 'value': 200000},
|
40
|
-
'
|
40
|
+
'SS_thd2': {'relation': '=', 'value': 34000},
|
41
41
|
# ... parameters not affected by TCJA and that are indexed
|
42
42
|
'STD_Dep': {'relation': '>', 'value': 1050},
|
43
43
|
'CG_brk2': {'relation': '>', 'value': 425400},
|
@@ -338,7 +338,7 @@ def fixture_reforms_dict(tests_path):
|
|
338
338
|
return json.loads(rjson)
|
339
339
|
|
340
340
|
|
341
|
-
NUM_REFORMS =
|
341
|
+
NUM_REFORMS = 60 # when changing this also change num_reforms in conftest.py
|
342
342
|
|
343
343
|
|
344
344
|
@pytest.mark.requires_pufcsv
|
taxcalc/tests/test_utils.py
CHANGED
@@ -98,9 +98,9 @@ def test_create_tables(cps_subsample):
|
|
98
98
|
np.nan,
|
99
99
|
-0.1,
|
100
100
|
-0.5,
|
101
|
-
-0.7,
|
102
|
-
-0.7,
|
103
101
|
-0.8,
|
102
|
+
-0.8,
|
103
|
+
-0.9,
|
104
104
|
-0.7,
|
105
105
|
-0.7,
|
106
106
|
-0.7,
|
@@ -125,17 +125,17 @@ def test_create_tables(cps_subsample):
|
|
125
125
|
0.0,
|
126
126
|
0.6,
|
127
127
|
2.9,
|
128
|
-
|
129
|
-
4.
|
130
|
-
6.
|
131
|
-
|
132
|
-
|
133
|
-
12.
|
134
|
-
13.
|
135
|
-
|
128
|
+
4.1,
|
129
|
+
4.9,
|
130
|
+
6.6,
|
131
|
+
7.1,
|
132
|
+
9.1,
|
133
|
+
12.3,
|
134
|
+
13.6,
|
135
|
+
61.2,
|
136
136
|
7.7,
|
137
|
-
|
138
|
-
0.
|
137
|
+
5.0,
|
138
|
+
0.9]
|
139
139
|
if not np.allclose(diff[tabcol].values.astype('float'), expected,
|
140
140
|
atol=0.1, rtol=0.0):
|
141
141
|
test_failure = True
|
@@ -147,19 +147,19 @@ def test_create_tables(cps_subsample):
|
|
147
147
|
expected = [0.0,
|
148
148
|
0.0,
|
149
149
|
0.0,
|
150
|
-
|
151
|
-
|
152
|
-
6.
|
153
|
-
|
154
|
-
10.
|
155
|
-
11.
|
156
|
-
|
157
|
-
20.
|
158
|
-
22.
|
150
|
+
0.9,
|
151
|
+
4.8,
|
152
|
+
6.7,
|
153
|
+
8.0,
|
154
|
+
10.7,
|
155
|
+
11.6,
|
156
|
+
14.8,
|
157
|
+
20.1,
|
158
|
+
22.3,
|
159
159
|
100.0,
|
160
|
-
|
161
|
-
8.
|
162
|
-
1.
|
160
|
+
12.6,
|
161
|
+
8.2,
|
162
|
+
1.5]
|
163
163
|
if not np.allclose(diff[tabcol].values.astype('float'), expected,
|
164
164
|
atol=0.1, rtol=0.0):
|
165
165
|
test_failure = True
|
@@ -173,13 +173,13 @@ def test_create_tables(cps_subsample):
|
|
173
173
|
-0.0,
|
174
174
|
-0.3,
|
175
175
|
-0.8,
|
176
|
-
-0.7,
|
177
|
-
-0.7,
|
178
176
|
-0.8,
|
177
|
+
-0.8,
|
178
|
+
-0.9,
|
179
179
|
-0.7,
|
180
180
|
-0.7,
|
181
|
-
-0.
|
182
|
-
-0.
|
181
|
+
-0.8,
|
182
|
+
-0.4,
|
183
183
|
-0.6,
|
184
184
|
-0.7,
|
185
185
|
-0.4,
|
@@ -200,18 +200,18 @@ def test_create_tables(cps_subsample):
|
|
200
200
|
0.0,
|
201
201
|
-0.3,
|
202
202
|
-3.8,
|
203
|
-
-5.
|
204
|
-
|
205
|
-
|
206
|
-
34.
|
207
|
-
|
208
|
-
|
209
|
-
159.
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
278.
|
214
|
-
489.
|
203
|
+
-5.3,
|
204
|
+
15.4,
|
205
|
+
22.3,
|
206
|
+
34.8,
|
207
|
+
33.6,
|
208
|
+
76.1,
|
209
|
+
159.7,
|
210
|
+
931.0,
|
211
|
+
1263.5,
|
212
|
+
163.0,
|
213
|
+
278.2,
|
214
|
+
489.8]
|
215
215
|
if not np.allclose(dist[tabcol].values.astype('float'), expected,
|
216
216
|
atol=0.1, rtol=0.0):
|
217
217
|
test_failure = True
|
@@ -273,17 +273,17 @@ def test_create_tables(cps_subsample):
|
|
273
273
|
29.0,
|
274
274
|
195.5,
|
275
275
|
363.0,
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
980.
|
280
|
-
|
281
|
-
|
282
|
-
3741.
|
283
|
-
|
276
|
+
490.4,
|
277
|
+
611.7,
|
278
|
+
746.6,
|
279
|
+
980.0,
|
280
|
+
1247.7,
|
281
|
+
1629.9,
|
282
|
+
3741.0,
|
283
|
+
10033.4,
|
284
284
|
1100.9,
|
285
|
-
|
286
|
-
1301.
|
285
|
+
1338.8,
|
286
|
+
1301.3]
|
287
287
|
if not np.allclose(dist[tabcol].tolist(), expected,
|
288
288
|
atol=0.1, rtol=0.0):
|
289
289
|
test_failure = True
|
@@ -297,17 +297,17 @@ def test_create_tables(cps_subsample):
|
|
297
297
|
expected = [0.0,
|
298
298
|
0.0,
|
299
299
|
-1.2,
|
300
|
-
-7.
|
301
|
-
3.
|
302
|
-
26.
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
335.
|
300
|
+
-7.1,
|
301
|
+
3.5,
|
302
|
+
26.7,
|
303
|
+
33.4,
|
304
|
+
55.2,
|
305
|
+
101.4,
|
306
|
+
335.2,
|
307
|
+
335.4,
|
308
308
|
65.6,
|
309
309
|
315.5,
|
310
|
-
|
310
|
+
1263.5]
|
311
311
|
if not np.allclose(dist[tabcol].values.astype('float'), expected,
|
312
312
|
atol=0.1, rtol=0.0):
|
313
313
|
test_failure = True
|
@@ -1,6 +1,6 @@
|
|
1
|
-
taxcalc/__init__.py,sha256=
|
2
|
-
taxcalc/calcfunctions.py,sha256=
|
3
|
-
taxcalc/calculator.py,sha256=
|
1
|
+
taxcalc/__init__.py,sha256=8ZPmhDabuQcT5NOpKql7aJ7-l7GpLYovbyvTN8Ya5qk,536
|
2
|
+
taxcalc/calcfunctions.py,sha256=k0p_w-IpHAeOBxqjAM-sFBl1Q7NqAOx3S6W_KB0vmgE,131393
|
3
|
+
taxcalc/calculator.py,sha256=oXx_IRv0jbfXEFQZkg_E3DzuHJ1JP4kBE8YdbE04iA4,64079
|
4
4
|
taxcalc/conftest.py,sha256=nO4J7qu1sTHgjqrzhpRMvfMJUrNm6GP_IsSuuDt_MeQ,141
|
5
5
|
taxcalc/consumption.json,sha256=FBgDd72AZnviQRhGz5rPgpGpOmaOzNYfGB9GdTCeKPI,8102
|
6
6
|
taxcalc/consumption.py,sha256=pkXhFGpFqu7hW62KaTctfRSzR-pXzMB1ai8XCQRAgXk,3480
|
@@ -12,13 +12,13 @@ taxcalc/growdiff.json,sha256=ReBAF6We9ZwTb0uDYQwbedPsQKdm6KSOERiddEYZbm0,15037
|
|
12
12
|
taxcalc/growdiff.py,sha256=Q3St-KPIUN2I_l1S0jwN0yr8O4LuzkNIU-_qbXTkrZw,2977
|
13
13
|
taxcalc/growfactors.csv,sha256=URIGSKApCY4McvdILkCaIm8EhCGEME2Du-ef5Q9c0uE,5134
|
14
14
|
taxcalc/growfactors.py,sha256=dW71yYKhFDbFtGpBT-kZBqY4MV7IswKcNI3_c-X_Nfg,6525
|
15
|
-
taxcalc/parameters.py,sha256=
|
16
|
-
taxcalc/policy.py,sha256=
|
17
|
-
taxcalc/policy_current_law.json,sha256=
|
15
|
+
taxcalc/parameters.py,sha256=vvweNfZ7GGI6cdi9yxsZLaLdonIIzbhjUp5NsBSkC84,35978
|
16
|
+
taxcalc/policy.py,sha256=O75xwWsQt49aUte0fhIaLpORwjQj865gP9Bl8IpHIQQ,8408
|
17
|
+
taxcalc/policy_current_law.json,sha256=tt4KyUyxXBmuQ4cvMcMf8xRGsb6Rvf0VvhxSMIQFmjg,590018
|
18
18
|
taxcalc/puf_ratios.csv,sha256=USMM79UEX8PnSKY_LYLxvACER_9NHyj4ipNEk2iyykQ,3580
|
19
19
|
taxcalc/puf_weights.csv.gz,sha256=35iZhzFO0dHUI2zf4_liyk60E-3Sgr_AbxszGxw7LfM,13522484
|
20
20
|
taxcalc/records.py,sha256=K5QgP6Pm9PtEVDVzM7tpHYPu554Wio0KnrU7YTTBKgQ,18264
|
21
|
-
taxcalc/records_variables.json,sha256=
|
21
|
+
taxcalc/records_variables.json,sha256=M4XMBpaolosMzY9cFKLFQxE2RYqPVKJuVHDX8AfVy9c,41362
|
22
22
|
taxcalc/taxcalcio.py,sha256=_ylnC-dZUpDFn79F8pjkZEq-wJhPCQA7Ig9SRLyhrUA,37691
|
23
23
|
taxcalc/utils.py,sha256=Wsvni2UP7WgnByN4bRIiLGgamDFwfQoexiy420o6ewY,63666
|
24
24
|
taxcalc/utilsprvt.py,sha256=iIyWp9-N3_XWjQj2jV2CWnJy7vrNlKB2_vIMwYjgbWY,1323
|
@@ -27,7 +27,7 @@ taxcalc/assumptions/README.md,sha256=Ww55r2zH1neoRSl_MawrPmX-ugaztIZ7_ALrquuatdQ
|
|
27
27
|
taxcalc/assumptions/economic_assumptions_template.json,sha256=utMk38GwSQFrkOAtRrDVhMQLpfaZH3JmtTznKX7IouM,2610
|
28
28
|
taxcalc/cli/__init__.py,sha256=cyZ0tdx41j_vV_B6GAkqJmNKKG-B0wUC0ThC75lJlk4,104
|
29
29
|
taxcalc/cli/tc.py,sha256=hGkP-XHkvx0MoFdHf-BjUnKqAxQBRtk8Vv4uqtIGuRY,18760
|
30
|
-
taxcalc/reforms/2017_law.json,sha256=
|
30
|
+
taxcalc/reforms/2017_law.json,sha256=SglDU_h4Ol8sBi92B8T-ToOF1eDbp-5WtLrYNIIYkEk,5188
|
31
31
|
taxcalc/reforms/2017_law.out.csv,sha256=nnNKXqY2kof8HC1nnU8srPsvNNepi6ISXQ9OJpQnT7M,473
|
32
32
|
taxcalc/reforms/ARPA.json,sha256=1H9LuJ_QitXRO9e8R3PWizajJgdioIzbGFdvdlt9FVg,3119
|
33
33
|
taxcalc/reforms/ARPA.out.csv,sha256=qSUdI0LoQFGG6h24eT-249pLEqmxmt7TvLrv1HX_y3Y,475
|
@@ -37,7 +37,7 @@ taxcalc/reforms/CARES.json,sha256=dOgyA2_bqEAJXpoFSmfdpKTmnYd3Rq1-zx1wLVoMJcI,19
|
|
37
37
|
taxcalc/reforms/CARES.out.csv,sha256=4DkEQm6l3BKsRz9JW80qyqiU4AM9ocze2aInfqVDKCM,476
|
38
38
|
taxcalc/reforms/ConsolidatedAppropriationsAct2021.json,sha256=3lWa9vNU3wneNQMI4aSSDAIC3grQ5qm6kHAmIBHSvBI,528
|
39
39
|
taxcalc/reforms/ConsolidatedAppropriationsAct2021.out.csv,sha256=qSUdI0LoQFGG6h24eT-249pLEqmxmt7TvLrv1HX_y3Y,475
|
40
|
-
taxcalc/reforms/Larson2019.json,sha256=
|
40
|
+
taxcalc/reforms/Larson2019.json,sha256=V7A3Bg57jq3-r8fSPuIciPeTAiWND7OtNqykdfV_PGE,1658
|
41
41
|
taxcalc/reforms/Larson2019.out.csv,sha256=s9kVoVYOrznFx4bGiDewyHWRKf7-wgXqpMIMTyxC1zA,475
|
42
42
|
taxcalc/reforms/README.md,sha256=0Ua4RBUnLKcEwxHqncRFDg7QMNq1oblXVNeyYRYfae4,1193
|
43
43
|
taxcalc/reforms/REFORMS.md,sha256=ewozCNudZfuL89FABQHOSxVn4DJ72hAQ2ghjE3s9kN4,3604
|
@@ -45,16 +45,16 @@ taxcalc/reforms/Renacci.json,sha256=U6rmbe1-IANG_H69xET5G8-v76ErbbHcm1JdRzAO8y4,
|
|
45
45
|
taxcalc/reforms/Renacci.out.csv,sha256=dBrDH-Sc5EYvsYzotJZShRxd1EbhdI3enOUqaAsAyuI,472
|
46
46
|
taxcalc/reforms/SandersDeFazio.json,sha256=BMSfl96ERD4SGd_PDMQkiDV5s4iD7Mh1BjS7uKxVD18,710
|
47
47
|
taxcalc/reforms/SandersDeFazio.out.csv,sha256=gIgcP6deUqtq-r9p6Lirg_hxUFDtFPJmKZWGzLrnIjU,475
|
48
|
-
taxcalc/reforms/TCJA.json,sha256=
|
48
|
+
taxcalc/reforms/TCJA.json,sha256=hUl5Irm9exKT7e5s-8NYjNrLboNLOy6eSh1oFuSTcrk,6132
|
49
49
|
taxcalc/reforms/TCJA.md,sha256=Uy5DtvQ9IiQKmWS-ISX_Dup3MwZNpBgS1Y78Rn3butY,2159
|
50
50
|
taxcalc/reforms/TCJA.out.csv,sha256=fiDRHHku0MQptfDXTK9KhnSF87_446bRFfebP_VBLZA,474
|
51
|
-
taxcalc/reforms/Trump2016.json,sha256=
|
51
|
+
taxcalc/reforms/Trump2016.json,sha256=v-pthOhjvsczMQACMU1vh3ZYXqWJhF-itkeDDFVyBjI,2250
|
52
52
|
taxcalc/reforms/Trump2016.out.csv,sha256=TXPSVmc3rE-6-RTVjk632A041e3_p8WW6IjoyYiAtfI,477
|
53
|
-
taxcalc/reforms/Trump2017.json,sha256=
|
53
|
+
taxcalc/reforms/Trump2017.json,sha256=sCaQkvFY66VPQa6GUzKbrsH5R3BxOcBwMuHE9Ypv0HU,1544
|
54
54
|
taxcalc/reforms/Trump2017.out.csv,sha256=By1quzZONFLQGK5E76mbNNFuORZ8aCGHpD1BR5iwTS8,474
|
55
55
|
taxcalc/reforms/cases.csv,sha256=JQ0LSnNeyl6xSgW5mimGUJMr7xwCWTOpiOpfwx2ETsg,570
|
56
56
|
taxcalc/reforms/clp.out.csv,sha256=qSUdI0LoQFGG6h24eT-249pLEqmxmt7TvLrv1HX_y3Y,475
|
57
|
-
taxcalc/reforms/ext.json,sha256
|
57
|
+
taxcalc/reforms/ext.json,sha256=bfi0HO5rYtjdxbbmz9cb_UimE7tMNQVnEqsCU7z1tPg,2310
|
58
58
|
taxcalc/reforms/growfactors_ext.csv,sha256=E0szWXtgV5jcpiyvREOz1yXw_poPIBC77bBQI1rlFxM,17733
|
59
59
|
taxcalc/reforms/ptaxes0.json,sha256=QkvqCVkI23sF7FvTHqaUYNpEJYuHNChbKwH0mH7Otp4,1718
|
60
60
|
taxcalc/reforms/ptaxes0.out.csv,sha256=DKGsyNWqo-ABUnjFjEGMpqqhmT2WDRGuU6sKTgH_obc,476
|
@@ -75,35 +75,35 @@ taxcalc/reforms/archive/TCJA_Senate_120117.json,sha256=hruGq8bVtJEMmSsOIuTcWiYON
|
|
75
75
|
taxcalc/tests/benefits_expect.csv,sha256=CFpMpg8a-5iNVSRnmCnl9dncwXx6eGn-KSnTJ2GqmS4,4833
|
76
76
|
taxcalc/tests/cmpi_cps_expect.txt,sha256=NCyG3XhgnV8qJe9TaF9l-9yUuwNfANNDvFn1HcSfZ1c,6262
|
77
77
|
taxcalc/tests/cmpi_puf_expect.txt,sha256=dtHBPDY23qttxjQsPpxhLYoUId1tnPZ4uNHx49NlZ0s,6264
|
78
|
-
taxcalc/tests/conftest.py,sha256=
|
78
|
+
taxcalc/tests/conftest.py,sha256=jziEwugOsHJT2YohMxLAR0MZjjaynZJY7flj4lmBn8Q,5164
|
79
79
|
taxcalc/tests/cpscsv_agg_expect.csv,sha256=Do3gRVVKUCZtQ2Ooy5jn6gMS9_WbclJ5FhSSHR6gwX8,2089
|
80
80
|
taxcalc/tests/puf_var_correl_coeffs_2016.csv,sha256=2VtWUcTaE6c5cmmEDylv9XKVONLT6GZ10gozELxk-2g,57314
|
81
81
|
taxcalc/tests/puf_var_wght_means_by_year.csv,sha256=nou_pIKICyXmCfyj_UziNXp1EB4BQU7Qa-ZvqlE1WqM,20049
|
82
|
-
taxcalc/tests/pufcsv_agg_expect.csv,sha256=
|
82
|
+
taxcalc/tests/pufcsv_agg_expect.csv,sha256=n3fmYQtpv7RClTyGsJ4ehFJzFexQA4Lp1jrbAuBcEK8,2117
|
83
83
|
taxcalc/tests/pufcsv_mtr_expect.txt,sha256=xGsUfafzsZ04fFQw162ys-1Mf1CDC_PQ0QZNigS07VY,4265
|
84
|
-
taxcalc/tests/reforms.json,sha256=
|
85
|
-
taxcalc/tests/reforms_expect.csv,sha256=
|
84
|
+
taxcalc/tests/reforms.json,sha256=5-Dl4t00F747RPuagHQBD8KlzWFu4b9x-DW1LajHoZ0,17094
|
85
|
+
taxcalc/tests/reforms_expect.csv,sha256=DJRO1LF8n6CX5viq3-uufqBF19hlVcqSq0T3EYgQQas,1363
|
86
86
|
taxcalc/tests/test_4package.py,sha256=1qhmDS3bdfNHNgz4pggaE6LduT3KKUtOsdtqP3QSIYQ,3601
|
87
87
|
taxcalc/tests/test_benefits.py,sha256=oaui5mO0TuW8Ht-uxvUCBL5zM3iTENq3Whyf_gEpY1U,3392
|
88
|
-
taxcalc/tests/test_calcfunctions.py,sha256=
|
89
|
-
taxcalc/tests/test_calculator.py,sha256=
|
88
|
+
taxcalc/tests/test_calcfunctions.py,sha256=512XEGEh2uT2si1eE2S5HP93ewj8dXLGGoDhi9Mqzbo,31949
|
89
|
+
taxcalc/tests/test_calculator.py,sha256=JTbaQ9rndIB7WylQE4inLvd7CazH4Vdnb0h7IRDtN3Q,33653
|
90
90
|
taxcalc/tests/test_compare.py,sha256=WglH4ZJOEQnav_mAmnGjpb7dooXcQsB1m04hgQeoBUQ,10873
|
91
|
-
taxcalc/tests/test_compatible_data.py,sha256=
|
91
|
+
taxcalc/tests/test_compatible_data.py,sha256=MP-DZXrBJ_2ftuxHchl3EGOhPnP5pnnrSQOM9POSx0c,13224
|
92
92
|
taxcalc/tests/test_consumption.py,sha256=c6zi9GqNK54cgfzxiWmY10UxOMJZ9vd9fOTwUKU1zMk,6318
|
93
93
|
taxcalc/tests/test_cpscsv.py,sha256=6TPm-lsK68gRw9ozC3CME5dOjMBVo2ov-QkfJlaBazU,8388
|
94
94
|
taxcalc/tests/test_data.py,sha256=Zwuf23WeaF0N53X0eo3MlnkO2Pn4qqgGNUZPpD8FETc,4461
|
95
95
|
taxcalc/tests/test_decorators.py,sha256=F31pt1S7jIgkgV62xMC-poWRzG7fzYVOJes9tOoCF40,10232
|
96
96
|
taxcalc/tests/test_growdiff.py,sha256=vXZTgPJTUi25mZrfmTPErytSC69Bs_36ydrQmWxgm9g,3420
|
97
97
|
taxcalc/tests/test_growfactors.py,sha256=L-DQMR2fh_rOQa3Lx1CDVnB2Q73zXUfTYYVunt0heto,2796
|
98
|
-
taxcalc/tests/test_parameters.py,sha256=
|
99
|
-
taxcalc/tests/test_policy.py,sha256=
|
98
|
+
taxcalc/tests/test_parameters.py,sha256=og-vbgGLb1Gow2xBjo9wy9nHNjFzrzmhOMw7ZeaNIJE,20132
|
99
|
+
taxcalc/tests/test_policy.py,sha256=Y8hqQBwOI4-qIgmP-70402fZ17Mm4OGkx8sxnZXxT4I,55565
|
100
100
|
taxcalc/tests/test_puf_var_stats.py,sha256=TG-sQtOkR6cBOw0am7MUsMSwjPxVdkvt0Xov342oii8,7786
|
101
|
-
taxcalc/tests/test_pufcsv.py,sha256=
|
101
|
+
taxcalc/tests/test_pufcsv.py,sha256=rxPaxA-SCAwaLy3jSnplvy_3dH8MQ-UKDSJnYZNhjzo,14434
|
102
102
|
taxcalc/tests/test_records.py,sha256=ncswnbCY7vZgJ_h6xwql4oFw-jZG2gWOMWvEJC2_jdc,8827
|
103
|
-
taxcalc/tests/test_reforms.py,sha256=
|
103
|
+
taxcalc/tests/test_reforms.py,sha256=2ttuq-e8uNDMO0PkGTqAqAcCtJwYAteJOVIEB5pbMMo,16032
|
104
104
|
taxcalc/tests/test_responses.py,sha256=2CkVVdaDNCSALMoUcGgweRlS2tfsK3kXogHtDkZMqJU,1663
|
105
105
|
taxcalc/tests/test_taxcalcio.py,sha256=4WUqtC9OsTczZqsa5jTaXfOQ5YNJRTotg5I6l9859KA,23821
|
106
|
-
taxcalc/tests/test_utils.py,sha256=
|
106
|
+
taxcalc/tests/test_utils.py,sha256=hqBVxddwcSP_6dEBccb-FlPMDm68EENzTtFaVVZ8exs,29403
|
107
107
|
taxcalc/validation/CSV_INPUT_VARS.md,sha256=MqlZZGt_a1n8JAU-nY5MjnTmjz1pMOuhtpVYIGUgl38,1433
|
108
108
|
taxcalc/validation/CSV_OUTPUT_VARS.md,sha256=wr8oyCJDXcxl4Lu0H_wMofUQYhEIyHDif6vkbas1FGE,3000
|
109
109
|
taxcalc/validation/README.md,sha256=6NzuGrgLQ6lrxw7AXZbHEJQy9WuIu6E1bgfM2Zfaq5I,3260
|
@@ -131,9 +131,9 @@ taxcalc/validation/taxsim35/expected_differences/b21-taxdiffs-expect.csv,sha256=
|
|
131
131
|
taxcalc/validation/taxsim35/expected_differences/c17-taxdiffs-expect.csv,sha256=YhgojbLowH3yujdYu7SGkdvBZmTgpugu4wYc1Be069M,1125
|
132
132
|
taxcalc/validation/taxsim35/expected_differences/c18-taxdiffs-expect.csv,sha256=g9J4BPbTySV-h-RcLvReJq9v1jscgiRSSZzi0taEA-k,1225
|
133
133
|
taxcalc/validation/taxsim35/expected_differences/c19-taxdiffs-expect.csv,sha256=Ceh15N_Xr3L7cpYjzGa-8NLCV3obc8PNHEhE5ZxSPhI,1238
|
134
|
-
taxcalc-
|
135
|
-
taxcalc-
|
136
|
-
taxcalc-
|
137
|
-
taxcalc-
|
138
|
-
taxcalc-
|
139
|
-
taxcalc-
|
134
|
+
taxcalc-5.0.0.dist-info/licenses/LICENSE,sha256=m5epLdB-_NXiY7NsEDgcHP4jDtJ4vOlRf5S3Jb-jraY,1299
|
135
|
+
taxcalc-5.0.0.dist-info/METADATA,sha256=BlYQjYi7q_EggN2BVILeMue5JuP7YJuBm5GPx_mIRp0,3677
|
136
|
+
taxcalc-5.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
137
|
+
taxcalc-5.0.0.dist-info/entry_points.txt,sha256=a3ZE1piRv683p27fOLdWZvVJXESkoslTOp5iXV7uVco,50
|
138
|
+
taxcalc-5.0.0.dist-info/top_level.txt,sha256=Wh8wTDHkA_cm4dn8IoUCviDyGgVQqwEQKPJnl8z6d4c,8
|
139
|
+
taxcalc-5.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|