Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update round trip reform tests #1

Merged
merged 25 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
84080d5
add 2022 inflation policy form
Nov 21, 2021
d69ce6a
fix several format problems in original files
Nov 29, 2021
1d2b748
initial commit: update parameters (partly) of Tax Rate, Capital Gains…
Dec 8, 2021
f63099a
delete the tax files which was misuploaded
Dec 8, 2021
e310e87
W-2 paramupdates for year 2020 & 2021
Dec 20, 2021
e9e5dc9
Form 6251 param update for year 2020 & 2021
Jan 6, 2022
a591e6b
Form 8863 param update for year 2020 & 2021
Jan 7, 2022
43e45a1
Form 8812 param update of year 2020 & 2021
Jan 7, 2022
cd2f0da
Form 1040 param update for year 2020 & 2021
Jan 18, 2022
d15ce2d
run ppp.py to add the new 2026 parameter values
Jan 25, 2022
1b28a85
policy.py update for last_known_year
Jan 25, 2022
c5d6569
modified TCJA.json to pass the test -- uncompleted
Feb 7, 2022
8772b03
changes in TCJA.json file to pass the test -- issues unsolved
Feb 11, 2022
a2a64ce
correct EITC max age
Feb 16, 2022
f0b18f9
EITC max age, year 2022
Feb 16, 2022
06f6269
update TCJA for newly index params
jdebacker Feb 19, 2022
2a60efb
read all reforms from files
jdebacker Feb 19, 2022
3fe5ccc
Merge remote-tracking branch 'bodi/2022-inflation-update' into pr-2633
jdebacker Feb 19, 2022
85ba495
add more recent policy change json files
jdebacker Feb 19, 2022
1a06b06
fix typos
jdebacker Feb 19, 2022
847e5b9
update expected reform results
jdebacker Feb 19, 2022
5355732
add ARPA reform file
jdebacker Feb 19, 2022
26f84bd
add apra expected output
jdebacker Feb 19, 2022
9cc8df1
add expected cares act output
jdebacker Feb 19, 2022
80d9089
add CAA 2021 expected output
jdebacker Feb 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion taxcalc/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class instance: Policy
DEFAULTS_FILE_NAME = 'policy_current_law.json'
DEFAULTS_FILE_PATH = os.path.abspath(os.path.dirname(__file__))
JSON_START_YEAR = 2013 # remains the same unless earlier data added
LAST_KNOWN_YEAR = 2019 # last year for which indexed param vals are known
LAST_KNOWN_YEAR = 2022 # last year for which indexed param vals are known
# should increase LAST_KNOWN_YEAR by one every calendar year
LAST_BUDGET_YEAR = 2031 # last extrapolation year
# should increase LAST_BUDGET_YEAR by one every calendar year
Expand Down
Loading