taxcalc 6.0.0__py3-none-any.whl → 6.1.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 CHANGED
@@ -14,6 +14,6 @@ from taxcalc.taxcalcio import *
14
14
  from taxcalc.utils import *
15
15
  from taxcalc.cli import *
16
16
 
17
- __version__ = '6.0.0'
17
+ __version__ = '6.1.0'
18
18
  __min_python3_version__ = 11
19
19
  __max_python3_version__ = 13
taxcalc/calcfunctions.py CHANGED
@@ -1871,7 +1871,7 @@ def AMT(e07300, dwks13, standard, f6251, c00100, c18300, taxbc,
1871
1871
  dwks14, c05700, e62900, e00700, dwks10, age_head, age_spouse,
1872
1872
  earned, cmbtp, qbided,
1873
1873
  AMT_child_em_c_age, AMT_brk1,
1874
- AMT_em, AMT_prt, AMT_rt1, AMT_rt2,
1874
+ AMT_em, AMT_prt, AMT_rt1, AMT_rt2_addon,
1875
1875
  AMT_child_em, AMT_em_ps, AMT_em_pe,
1876
1876
  AMT_CG_brk1, AMT_CG_brk2, AMT_CG_brk3, AMT_CG_rt1, AMT_CG_rt2,
1877
1877
  AMT_CG_rt3, AMT_CG_rt4, c05800, c09600, c62100):
@@ -1946,8 +1946,8 @@ def AMT(e07300, dwks13, standard, f6251, c00100, c18300, taxbc,
1946
1946
  AMT exemption phaseout rate
1947
1947
  AMT_rt1: float
1948
1948
  AMT rate 1
1949
- AMT_rt2: float
1950
- Additional AMT rate for AMT taxable income about AMT bracket 1
1949
+ AMT_rt2_addon: float
1950
+ Additional AMT rate for AMT taxable income above AMT bracket 1
1951
1951
  AMT_child_em: float
1952
1952
  Child AMT exemption additional income base
1953
1953
  AMT_em_ps: list
@@ -1977,14 +1977,14 @@ def AMT(e07300, dwks13, standard, f6251, c00100, c18300, taxbc,
1977
1977
  c09600: float
1978
1978
  Alternative Minimum Tax (AMT) liability
1979
1979
  c62100: float
1980
- Alternative Minimum Tax (AMT)
1980
+ Alternative Minimum Tax (AMT) taxable income
1981
1981
 
1982
1982
  Returns
1983
1983
  -------
1984
1984
  c62100: float
1985
- Alternative Minimum Tax (AMT)
1985
+ Alternative Minimum Tax (AMT) taxable income
1986
1986
  c09600: float
1987
- Alternative Minimum Tax (AMT) liability
1987
+ Alternative Minimum Tax (AMT) tax liability
1988
1988
  c05800: float
1989
1989
  Total (regular + AMT) income tax liability before credits
1990
1990
  """
@@ -2012,7 +2012,7 @@ def AMT(e07300, dwks13, standard, f6251, c00100, c18300, taxbc,
2012
2012
  line29 = min(line29, earned + AMT_child_em)
2013
2013
  line30 = max(0., c62100 - line29)
2014
2014
  line3163 = (AMT_rt1 * line30 +
2015
- AMT_rt2 * max(0., (line30 - (AMT_brk1 / sep))))
2015
+ AMT_rt2_addon * max(0., (line30 - (AMT_brk1 / sep))))
2016
2016
  if dwks10 > 0. or dwks13 > 0. or dwks14 > 0. or dwks19 > 0. or e24515 > 0.:
2017
2017
  # complete Form 6251, Part III (line36 is equal to line30)
2018
2018
  line37 = dwks13
@@ -2021,7 +2021,7 @@ def AMT(e07300, dwks13, standard, f6251, c00100, c18300, taxbc,
2021
2021
  line40 = min(line30, line39)
2022
2022
  line41 = max(0., line30 - line40)
2023
2023
  line42 = (AMT_rt1 * line41 +
2024
- AMT_rt2 * max(0., (line41 - (AMT_brk1 / sep))))
2024
+ AMT_rt2_addon * max(0., (line41 - (AMT_brk1 / sep))))
2025
2025
  line44 = dwks14
2026
2026
  line45 = max(0., AMT_CG_brk1[MARS - 1] - line44)
2027
2027
  line46 = min(line30, line37)
@@ -2268,7 +2268,7 @@ def EITCamount(basic_frac, phasein_rate, earnings, max_amount,
2268
2268
  @iterate_jit(nopython=True)
2269
2269
  def EITC(MARS, DSI, EIC, c00100, e00300, e00400, e00600, c01000,
2270
2270
  e02000, e26270, age_head, age_spouse, earned, earned_p, earned_s,
2271
- EITC_ps, EITC_MinEligAge, EITC_MaxEligAge, EITC_ps_MarriedJ,
2271
+ EITC_ps, EITC_MinEligAge, EITC_MaxEligAge, EITC_ps_addon_MarriedJ,
2272
2272
  EITC_rt, EITC_c, EITC_prt, EITC_basic_frac,
2273
2273
  EITC_InvestIncome_c, EITC_excess_InvestIncome_rt,
2274
2274
  EITC_indiv, EITC_sep_filers_elig, c59660):
@@ -2315,7 +2315,7 @@ def EITC(MARS, DSI, EIC, c00100, e00300, e00400, e00600, c01000,
2315
2315
  Minimum age for childless EITC eligibility
2316
2316
  EITC_MaxEligAge: int
2317
2317
  Maximum age for childless EITC eligibility
2318
- EITC_ps_MarriedJ: list
2318
+ EITC_ps_addon_MarriedJ: list
2319
2319
  Extra earned income credit phaseout start AGI for
2320
2320
  married filling jointly
2321
2321
  EITC_rt: list
@@ -2360,7 +2360,7 @@ def EITC(MARS, DSI, EIC, c00100, e00300, e00400, e00600, c01000,
2360
2360
  c59660 = eitc
2361
2361
 
2362
2362
  if MARS == 2:
2363
- po_start = EITC_ps[EIC] + EITC_ps_MarriedJ[EIC]
2363
+ po_start = EITC_ps[EIC] + EITC_ps_addon_MarriedJ[EIC]
2364
2364
  if not EITC_indiv:
2365
2365
  # filing unit EITC rather than individual EITC
2366
2366
  eitc = EITCamount(EITC_basic_frac,
taxcalc/policy.py CHANGED
@@ -55,8 +55,7 @@ class Policy(Parameters):
55
55
  return last_budget_year - Policy.JSON_START_YEAR + 1
56
56
 
57
57
  # NOTE: the following three data structures use internal parameter names:
58
- # (1) specify which Policy parameters have been removed or renamed recently
59
- # where "recently" means in the last major release
58
+ # (1) specify which Policy parameters have been removed or renamed
60
59
  REMOVED_PARAMS = {
61
60
  # following parameters were renamed in PR 2918
62
61
  'SS_thd50': 'was renamed SS_thd1 in Tax-Calculator 5.0.0',
@@ -110,9 +109,13 @@ class Policy(Parameters):
110
109
  'ID_reduction_other_rate': (
111
110
  'was renamed ID_reduction_rate in Tax-Calculator 5.1.0'
112
111
  ),
112
+ # following parameters were renamed in PR 2965
113
+ 'AMT_rt2': 'was renamed AMT_rt2_addon in Tax-Calculator 6.1.0',
114
+ 'EITC_ps_MarriedJ': (
115
+ 'was renamed EITC_ps_addon_MarriedJ in Tax-Calculator 6.1.0'
116
+ ),
113
117
  }
114
- # (2) specify which Policy parameters have been redefined recently
115
- # where "recently" means in the last major release
118
+ # (2) specify which Policy parameters have been redefined
116
119
  REDEFINED_PARAMS = {}
117
120
  # (3) specify which Policy parameters are wage (rather than price) indexed
118
121
  WAGE_INDEXED_PARAMS = ['SS_Earnings_c', 'SS_Earnings_thd']
@@ -17502,9 +17502,9 @@
17502
17502
  "cps": true
17503
17503
  }
17504
17504
  },
17505
- "AMT_rt2": {
17505
+ "AMT_rt2_addon": {
17506
17506
  "title": "Additional AMT rate for AMT taxable income above AMT bracket 1",
17507
- "description": "The additional tax rate applied to the portion of AMT income above the AMT bracket 1.",
17507
+ "description": "The additional tax rate applied to the portion of AMT income above the AMT bracket 1, which means that AMT_rt2_addon equals AMT_rt2 minus AMT_rt1.",
17508
17508
  "notes": "This is the additional tax rate (on top of AMT rate 1) for AMT income above AMT bracket 1.",
17509
17509
  "section_1": "Personal Income",
17510
17510
  "section_2": "Alternative Minimum Tax",
@@ -17519,8 +17519,8 @@
17519
17519
  ],
17520
17520
  "validators": {
17521
17521
  "range": {
17522
- "min": 0,
17523
- "max": 1
17522
+ "min": 0.0,
17523
+ "max": 0.1
17524
17524
  }
17525
17525
  },
17526
17526
  "compatible_data": {
@@ -19734,9 +19734,9 @@
19734
19734
  "cps": true
19735
19735
  }
19736
19736
  },
19737
- "EITC_ps_MarriedJ": {
19737
+ "EITC_ps_addon_MarriedJ": {
19738
19738
  "title": "Extra earned income credit phaseout start AGI for married filling jointly",
19739
- "description": "This is the additional amount added on the regular phaseout start amount for taxpayers with filling status of married filing jointly.",
19739
+ "description": "This is the additional amount added on the regular phaseout start amount for taxpayers with filling status of married filing jointly, which means that EITC_ps_addon_MarriedJ equals EITC_ps_MarriedJ minus EITC_ps.",
19740
19740
  "notes": "",
19741
19741
  "section_1": "Refundable Credits",
19742
19742
  "section_2": "Earned Income Tax Credit",
@@ -99,7 +99,7 @@
99
99
  "AMT_brk1": {"2017": 187800},
100
100
  "EITC_c": {"2017": [510, 3400, 5616, 6318]},
101
101
  "EITC_ps": {"2017": [8340, 18340, 18340, 18340]},
102
- "EITC_ps_MarriedJ": {"2017": [5600, 5600, 5600, 5600]},
102
+ "EITC_ps_addon_MarriedJ": {"2017": [5600, 5600, 5600, 5600]},
103
103
  "EITC_InvestIncome_c": {"2017": 3450},
104
104
  "ETC_pe_Single": {"2017": 66},
105
105
  "ETC_pe_Married": {"2017": 132},
taxcalc/reforms/ARPA.json CHANGED
@@ -49,7 +49,7 @@
49
49
  "2022": [0.0765, 0.34, 0.4, 0.45]},
50
50
  "EITC_ps": {"2021": [11610, 19464.12, 19464.12, 19464.12],
51
51
  "2022": [9160, 20130, 20130, 20130]},
52
- "EITC_ps_MarriedJ": {"2021": [5940, 5950, 5950, 5950],
52
+ "EITC_ps_addon_MarriedJ": {"2021": [5940, 5950, 5950, 5950],
53
53
  "2022": [6130, 6130, 6130, 6130]},
54
54
  "EITC_MinEligAge": {"2021": 19,
55
55
  "2022": 25},
@@ -47,7 +47,7 @@
47
47
  "2017": [19730.0, 19730.0, 19730.0, 19730.0, 19730.0]
48
48
  },
49
49
  "AMT_rt1": {"2017": 0},
50
- "AMT_rt2": {"2017": 0},
50
+ "AMT_rt2_addon": {"2017": 0},
51
51
  "CG_nodiff": {"2017": true},
52
52
  "EITC_c": {"2017": [1020, 4760, 7862, 8845]}
53
53
  }
taxcalc/reforms/TCJA.json CHANGED
@@ -123,7 +123,7 @@
123
123
  "EITC_c": {"2018": [519, 3461, 5716, 6431]},
124
124
  "EITC_MaxEligAge": {"2022":125, "2023": 125},
125
125
  "EITC_ps": {"2018": [8490, 18660, 18660, 18660]},
126
- "EITC_ps_MarriedJ": {"2018": [5680, 5690, 5690, 5690]},
126
+ "EITC_ps_addon_MarriedJ": {"2018": [5680, 5690, 5690, 5690]},
127
127
  "EITC_InvestIncome_c": {"2018": 3500},
128
128
  "ETC_pe_Single": {"2018": 67},
129
129
  "ETC_pe_Married": {"2018": 134},
@@ -37,7 +37,7 @@
37
37
  "CG_brk1": {"2017": [37500, 75000, 37500, 37500, 75000]},
38
38
  "CG_brk2": {"2017": [112500, 225000, 112500, 112500, 225000]},
39
39
  "AMT_rt1": {"2017": 0},
40
- "AMT_rt2": {"2017": 0},
40
+ "AMT_rt2_addon": {"2017": 0},
41
41
  "NIIT_rt": {"2017": 0},
42
42
  "STD": {"2017": [15000, 30000, 15000, 15000, 30000]},
43
43
  "II_em": {"2017": 0},
@@ -23,7 +23,7 @@
23
23
  "II_rt6": {"2017": 0.35},
24
24
  "II_rt7": {"2017": 0.35},
25
25
  "AMT_rt1": {"2017": 0},
26
- "AMT_rt2": {"2017": 0},
26
+ "AMT_rt2_addon": {"2017": 0},
27
27
  "NIIT_rt": {"2017": 0},
28
28
  "STD": {"2017": [12700, 25400, 12700, 18700, 25400]},
29
29
  "ID_StateLocalTax_hc": {"2017": 1.0},
@@ -365,7 +365,7 @@
365
365
  "38": {
366
366
  "baseline": "2017_law.json",
367
367
  "start_year": 2015,
368
- "value": {"AMT_rt2": 0.04},
368
+ "value": {"AMT_rt2_addon": 0.04},
369
369
  "name": "Increase AMT rate above the surtax threshold by 2 pts",
370
370
  "output_type": "iitax",
371
371
  "compare_with": {}
@@ -8,9 +8,7 @@ Tests for package existence and dependencies consistency.
8
8
  import os
9
9
  import re
10
10
  import ast
11
- import subprocess
12
11
  import yaml
13
- import pytest
14
12
 
15
13
 
16
14
  def extract_install_requires(setup_py_content):
@@ -41,19 +39,6 @@ def extract_install_requires(setup_py_content):
41
39
  return []
42
40
 
43
41
 
44
- @pytest.mark.local
45
- def test_for_package_existence():
46
- """
47
- Ensure that no conda taxcalc package is installed when running pytest.
48
- Primarily to help developers catch mistaken installations of taxcalc;
49
- the local mark prevents test from running on GitHub.
50
- """
51
- out = subprocess.check_output(['conda', 'list', 'taxcalc']).decode('ascii')
52
- envless_out = out.replace('taxcalc-dev', 'environment')
53
- if re.search('taxcalc', envless_out) is not None:
54
- assert False, 'ERROR: taxcalc package is installed'
55
-
56
-
57
42
  def test_for_consistency(tests_path):
58
43
  """
59
44
  Ensure that there is consistency between environment.yml dependencies
@@ -63,6 +48,9 @@ def test_for_consistency(tests_path):
63
48
  dev_pkgs = set([
64
49
  'pytest',
65
50
  'pytest-xdist',
51
+ 'pytest-asyncio',
52
+ 'requests',
53
+ 'aiohttp',
66
54
  'pycodestyle',
67
55
  'pylint',
68
56
  'coverage',
@@ -521,7 +521,7 @@ earned_s = 0
521
521
  EITC_ps = [8790, 19330, 19330, 19330]
522
522
  EITC_MinEligAge = 25
523
523
  EITC_MaxEligAge = 64
524
- EITC_ps_MarriedJ = [5890, 5890, 5890, 5890]
524
+ EITC_ps_addon_MarriedJ = [5890, 5890, 5890, 5890]
525
525
  EITC_rt = [0.0765, 0.34, 0.4, 0.45]
526
526
  EITC_c = [538, 3584, 5920, 6660]
527
527
  EITC_prt = [0.0765, 0.1598, 0.2106, 0.2106]
@@ -536,7 +536,7 @@ UI_em = 10200
536
536
  c59660 = 0 # this will be 6660 after the EITC calculation
537
537
  tuple1 = (MARS, DSI, EIC, c00100, e00300, e00400, e00600, c01000,
538
538
  e02000, e26270, age_head, age_spouse, earned, earned_p, earned_s,
539
- EITC_ps, EITC_MinEligAge, EITC_MaxEligAge, EITC_ps_MarriedJ,
539
+ EITC_ps, EITC_MinEligAge, EITC_MaxEligAge, EITC_ps_addon_MarriedJ,
540
540
  EITC_rt, EITC_c, EITC_prt, EITC_basic_frac,
541
541
  EITC_InvestIncome_c, EITC_excess_InvestIncome_rt,
542
542
  EITC_indiv, EITC_sep_filers_elig, c59660)
@@ -45,7 +45,7 @@ def test_2017_law_reform(tests_path):
45
45
  'AMT_brk1': {'relation': '>', 'value': 191100},
46
46
  'EITC_c': {'relation': '>', 'value': 519},
47
47
  'EITC_ps': {'relation': '>', 'value': 8490},
48
- 'EITC_ps_MarriedJ': {'relation': '>', 'value': 5680},
48
+ 'EITC_ps_addon_MarriedJ': {'relation': '>', 'value': 5680},
49
49
  'EITC_InvestIncome_c': {'relation': '>', 'value': 3500},
50
50
  # ... parameters affected by TCJA and that are not indexed
51
51
  'ID_Charity_crt_all': {'relation': '=', 'value': 0.5},
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taxcalc
3
- Version: 6.0.0
3
+ Version: 6.1.0
4
4
  Summary: Tax-Calculator
5
5
  Home-page: https://github.com/PSLmodels/Tax-Calculator
6
6
  Download-URL: https://github.com/PSLmodels/Tax-Calculator
@@ -1,5 +1,5 @@
1
- taxcalc/__init__.py,sha256=bx1f6yo5NhIJZFyNhOBAu1hfPUE-LyHd1l2Y-fMfpAc,536
2
- taxcalc/calcfunctions.py,sha256=8XUhXncnsRkqDL-3uqH1Ew2HIMs3p-gf97KHRKnJZJM,135517
1
+ taxcalc/__init__.py,sha256=w8TrFuHtFAvvW44Ym-uJrP0Y-HkC1eIyThSOEoc58AM,536
2
+ taxcalc/calcfunctions.py,sha256=VmjzqAUmrACYVhXt_VL6WL8tVob2NFkFiR1jqygnkgo,135593
3
3
  taxcalc/calculator.py,sha256=u7I5Wru2RTdo1G4tJ4RBGsAzrvx78VGUhZyegiIf8dg,64151
4
4
  taxcalc/conftest.py,sha256=nO4J7qu1sTHgjqrzhpRMvfMJUrNm6GP_IsSuuDt_MeQ,141
5
5
  taxcalc/consumption.json,sha256=FbGpsLP0W02sYc7o8N-BVz8Xw8hfk_gCr5MtHtgEBQQ,7615
@@ -13,8 +13,8 @@ taxcalc/growdiff.py,sha256=Q3St-KPIUN2I_l1S0jwN0yr8O4LuzkNIU-_qbXTkrZw,2977
13
13
  taxcalc/growfactors.csv,sha256=URIGSKApCY4McvdILkCaIm8EhCGEME2Du-ef5Q9c0uE,5134
14
14
  taxcalc/growfactors.py,sha256=OrYmlWMQAmoMe5fhgnPJcIdvFs0aDf9JBy2aU7J0kBQ,6576
15
15
  taxcalc/parameters.py,sha256=ObwQMBlPjq3tyNwiR94Nj0zouIVsNaHIho-OQK1RNKg,35966
16
- taxcalc/policy.py,sha256=vLhqvbsOrImpb0BsRhmgdrnRCsOvPWUc_fTUSYq8yOM,8700
17
- taxcalc/policy_current_law.json,sha256=_8OHMh4VsK4VJ7LN5aGQX_b_UbimYDqzsEt8P6NZaw4,608288
16
+ taxcalc/policy.py,sha256=jg4OiuR8clM0JjuKob4SG5emeY6I9lnGVx9wlEU43eY,8805
17
+ taxcalc/policy_current_law.json,sha256=mHO1mgSJfq5VTUum-l-Dl4zV3lFD8nUIGwB4wJFQ5EY,608444
18
18
  taxcalc/records.py,sha256=IrUlfM3AiVq2K_rp_jBOc5X2h6PKREQf_MmfgJDjdpY,17490
19
19
  taxcalc/records_variables.json,sha256=-yo5d9kVvCgVCdx8E8bOiZlC_Pu-zjznjLeYWTiT4Uw,44583
20
20
  taxcalc/taxcalcio.py,sha256=CjByunQKr6Jc-bSPZjso7bjb6KW5nMNVy3CaDdBdLyo,39047
@@ -25,9 +25,9 @@ taxcalc/assumptions/README.md,sha256=Ww55r2zH1neoRSl_MawrPmX-ugaztIZ7_ALrquuatdQ
25
25
  taxcalc/assumptions/economic_assumptions_template.json,sha256=utMk38GwSQFrkOAtRrDVhMQLpfaZH3JmtTznKX7IouM,2610
26
26
  taxcalc/cli/__init__.py,sha256=cyZ0tdx41j_vV_B6GAkqJmNKKG-B0wUC0ThC75lJlk4,104
27
27
  taxcalc/cli/tc.py,sha256=YAtcWnGcwTgT3DJIWbwfHAtonXav8k2X_yDV5fCxf8M,18760
28
- taxcalc/reforms/2017_law.json,sha256=4QHE3gMKueXD3M97ODqA0LjofXUfSmwVvJA1FLclaqQ,5264
28
+ taxcalc/reforms/2017_law.json,sha256=Qd0NmjIz14DWHNSNji794Rb1Pmrw99ngMYlYcbBWXTc,5270
29
29
  taxcalc/reforms/2017_law.out.csv,sha256=nnNKXqY2kof8HC1nnU8srPsvNNepi6ISXQ9OJpQnT7M,473
30
- taxcalc/reforms/ARPA.json,sha256=6oGn3pZ4clAhjFHvqpmm7sXcm407Ea_8mjJchSscKpc,3203
30
+ taxcalc/reforms/ARPA.json,sha256=lhlO0ycxLiVuVwB8mIl42RtULNOlPvIEYAvAkJbPU98,3209
31
31
  taxcalc/reforms/ARPA.out.csv,sha256=NBH9eOO_NYmr6FyIHK9AS0paof7o6Rz6AHODvEo-uLU,476
32
32
  taxcalc/reforms/BrownKhanna.json,sha256=yydcFsixV28p1I5uB0VgwJJ5GyGL0JU8K-IUwrPHlzs,964
33
33
  taxcalc/reforms/BrownKhanna.out.csv,sha256=D2pPxtH5RyMnf8wQad3R2W1Uh4ZLXa7MAQ_dQccMkPA,475
@@ -39,16 +39,16 @@ taxcalc/reforms/Larson2019.json,sha256=V7A3Bg57jq3-r8fSPuIciPeTAiWND7OtNqykdfV_P
39
39
  taxcalc/reforms/Larson2019.out.csv,sha256=s9kVoVYOrznFx4bGiDewyHWRKf7-wgXqpMIMTyxC1zA,475
40
40
  taxcalc/reforms/README.md,sha256=0Ua4RBUnLKcEwxHqncRFDg7QMNq1oblXVNeyYRYfae4,1193
41
41
  taxcalc/reforms/REFORMS.md,sha256=ewozCNudZfuL89FABQHOSxVn4DJ72hAQ2ghjE3s9kN4,3604
42
- taxcalc/reforms/Renacci.json,sha256=U6rmbe1-IANG_H69xET5G8-v76ErbbHcm1JdRzAO8y4,2437
42
+ taxcalc/reforms/Renacci.json,sha256=bShpYGIXmAVdWIFNNrRJqRiwEhqWNtvmywIom7i863U,2443
43
43
  taxcalc/reforms/Renacci.out.csv,sha256=dBrDH-Sc5EYvsYzotJZShRxd1EbhdI3enOUqaAsAyuI,472
44
44
  taxcalc/reforms/SandersDeFazio.json,sha256=BMSfl96ERD4SGd_PDMQkiDV5s4iD7Mh1BjS7uKxVD18,710
45
45
  taxcalc/reforms/SandersDeFazio.out.csv,sha256=gIgcP6deUqtq-r9p6Lirg_hxUFDtFPJmKZWGzLrnIjU,475
46
- taxcalc/reforms/TCJA.json,sha256=9prAFLdzzqcRr0cNKy7PjgUNQtKKxBJWARrcD5h9I0I,6131
46
+ taxcalc/reforms/TCJA.json,sha256=eNcxWKNMyr52XFA2AcuMPQu4yjqv_PKE0NKZrgi4Opc,6137
47
47
  taxcalc/reforms/TCJA.md,sha256=Uy5DtvQ9IiQKmWS-ISX_Dup3MwZNpBgS1Y78Rn3butY,2159
48
48
  taxcalc/reforms/TCJA.out.csv,sha256=fiDRHHku0MQptfDXTK9KhnSF87_446bRFfebP_VBLZA,474
49
- taxcalc/reforms/Trump2016.json,sha256=v-pthOhjvsczMQACMU1vh3ZYXqWJhF-itkeDDFVyBjI,2250
49
+ taxcalc/reforms/Trump2016.json,sha256=d3lafxQFoj52iPOD-rDcZKK5XbFjjGhxUvFMRXDn78w,2256
50
50
  taxcalc/reforms/Trump2016.out.csv,sha256=TXPSVmc3rE-6-RTVjk632A041e3_p8WW6IjoyYiAtfI,477
51
- taxcalc/reforms/Trump2017.json,sha256=sCaQkvFY66VPQa6GUzKbrsH5R3BxOcBwMuHE9Ypv0HU,1544
51
+ taxcalc/reforms/Trump2017.json,sha256=meueYahczMDLDC-AM1SbsvRJ9lrMQPMQ5TA1Fe97b7Y,1550
52
52
  taxcalc/reforms/Trump2017.out.csv,sha256=By1quzZONFLQGK5E76mbNNFuORZ8aCGHpD1BR5iwTS8,474
53
53
  taxcalc/reforms/cases.csv,sha256=JQ0LSnNeyl6xSgW5mimGUJMr7xwCWTOpiOpfwx2ETsg,570
54
54
  taxcalc/reforms/ext.json,sha256=pD8bTjtb7NuYVrOd1IT8pqscKRMX2_5hkrTOQceSiVw,2309
@@ -78,11 +78,11 @@ taxcalc/tests/puf_var_correl_coeffs_2016.csv,sha256=lQXyUEa9wAyhUEOtYm5j0p-cnzys
78
78
  taxcalc/tests/puf_var_wght_means_by_year.csv,sha256=ReclabBk9MVO8p1y62h9xNDoFw9anjXe8BmKiFEr0hk,12889
79
79
  taxcalc/tests/pufcsv_agg_expect.csv,sha256=H9TCOhi_EksKNVa-Sp56cMGBxpCAD57xs3CHXzQNhp0,3545
80
80
  taxcalc/tests/pufcsv_mtr_expect.txt,sha256=Y5-4ulrq2QWCceGhCQc60N2ulc7YTq7w-qf11mB74Os,4265
81
- taxcalc/tests/reforms.json,sha256=dIP28djWy-fkPRI5gn7oXHLx_-bzB8KMlS77-1x8Ccc,17193
81
+ taxcalc/tests/reforms.json,sha256=Bqmec6qw8c8ST6nZXHntX4wGxUas4VxRaYccN2KwrLM,17199
82
82
  taxcalc/tests/reforms_expect.csv,sha256=AhrIJP2fON8d1exXJ6yLwnng0bm1X4dGn0IokP5ItQA,1354
83
- taxcalc/tests/test_4package.py,sha256=bB8aHmeOchYPTdSYrzwQD3X5Gr-FmCdyu0Ykv3SSjaA,3573
83
+ taxcalc/tests/test_4package.py,sha256=OO31ndIFR9juCN6T2cxSJoSpEu5tLzGJcNrI88fwj18,3075
84
84
  taxcalc/tests/test_benefits.py,sha256=oaui5mO0TuW8Ht-uxvUCBL5zM3iTENq3Whyf_gEpY1U,3392
85
- taxcalc/tests/test_calcfunctions.py,sha256=7uD1EW48TgsEE6pNHIxkXNi9gvZR7dbT7il6jAqgy9s,34653
85
+ taxcalc/tests/test_calcfunctions.py,sha256=B1FpbzRN2Cw76cGMJIiDPfO2hJxMwiw890EYYgKea9s,34665
86
86
  taxcalc/tests/test_calculator.py,sha256=ZOqfg6yM93qivNnKiLZVC_OiCtdauDVN036ERPu6Wy8,35037
87
87
  taxcalc/tests/test_consumption.py,sha256=CJ9xWtixcJXSpkVxyBrYC1jjQYGQHifsJ8IL1rK7BIk,6318
88
88
  taxcalc/tests/test_cpscsv.py,sha256=pc-TGmAXcHL1_3g1Dyityad7Rm16Oem4YYOLMWS0t1g,7628
@@ -93,7 +93,7 @@ taxcalc/tests/test_growfactors.py,sha256=L-DQMR2fh_rOQa3Lx1CDVnB2Q73zXUfTYYVunt0
93
93
  taxcalc/tests/test_parameters.py,sha256=LqN0zNfkvovzdDlFzS7CGF-mXAF_XTZd2Wb6ylqOugA,22102
94
94
  taxcalc/tests/test_policy.py,sha256=rrJlh408be_cP7v6fa-k6hfiRuVH2FAYvGzxjIZAaUE,54902
95
95
  taxcalc/tests/test_records.py,sha256=mB0BcEDzfrq1UHWGVRNf99xW-D9yjufAKtciAlTgDMw,13467
96
- taxcalc/tests/test_reforms.py,sha256=IWOCWvq412hV1I7u_Tduj6kQM_IsyHBztgOT6Z2A5-w,15133
96
+ taxcalc/tests/test_reforms.py,sha256=lvrA_1AT_3ZB42WjQwB20mx_BCwQoutsAUAHdmp8Yqk,15139
97
97
  taxcalc/tests/test_responses.py,sha256=2CkVVdaDNCSALMoUcGgweRlS2tfsK3kXogHtDkZMqJU,1663
98
98
  taxcalc/tests/test_taxcalcio.py,sha256=OzSkDvqINcgPWg1ANErZ5L3fl2la8IRj1dw6_9rP798,22207
99
99
  taxcalc/tests/test_utils.py,sha256=hqBVxddwcSP_6dEBccb-FlPMDm68EENzTtFaVVZ8exs,29403
@@ -124,9 +124,9 @@ taxcalc/validation/taxsim35/expected_differences/b21-taxdiffs-expect.csv,sha256=
124
124
  taxcalc/validation/taxsim35/expected_differences/c17-taxdiffs-expect.csv,sha256=YhgojbLowH3yujdYu7SGkdvBZmTgpugu4wYc1Be069M,1125
125
125
  taxcalc/validation/taxsim35/expected_differences/c18-taxdiffs-expect.csv,sha256=g9J4BPbTySV-h-RcLvReJq9v1jscgiRSSZzi0taEA-k,1225
126
126
  taxcalc/validation/taxsim35/expected_differences/c19-taxdiffs-expect.csv,sha256=Ceh15N_Xr3L7cpYjzGa-8NLCV3obc8PNHEhE5ZxSPhI,1238
127
- taxcalc-6.0.0.dist-info/licenses/LICENSE,sha256=m5epLdB-_NXiY7NsEDgcHP4jDtJ4vOlRf5S3Jb-jraY,1299
128
- taxcalc-6.0.0.dist-info/METADATA,sha256=PGKspEXSi4R_SU2zDezHX9q8Q2iPgpk6xUU3E6WCYtk,3509
129
- taxcalc-6.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
130
- taxcalc-6.0.0.dist-info/entry_points.txt,sha256=a3ZE1piRv683p27fOLdWZvVJXESkoslTOp5iXV7uVco,50
131
- taxcalc-6.0.0.dist-info/top_level.txt,sha256=Wh8wTDHkA_cm4dn8IoUCviDyGgVQqwEQKPJnl8z6d4c,8
132
- taxcalc-6.0.0.dist-info/RECORD,,
127
+ taxcalc-6.1.0.dist-info/licenses/LICENSE,sha256=m5epLdB-_NXiY7NsEDgcHP4jDtJ4vOlRf5S3Jb-jraY,1299
128
+ taxcalc-6.1.0.dist-info/METADATA,sha256=Bc76CGokfrq_UIex2wjyPIbnVAxbXwCAvJjwbBUtJ5w,3509
129
+ taxcalc-6.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
130
+ taxcalc-6.1.0.dist-info/entry_points.txt,sha256=a3ZE1piRv683p27fOLdWZvVJXESkoslTOp5iXV7uVco,50
131
+ taxcalc-6.1.0.dist-info/top_level.txt,sha256=Wh8wTDHkA_cm4dn8IoUCviDyGgVQqwEQKPJnl8z6d4c,8
132
+ taxcalc-6.1.0.dist-info/RECORD,,