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

Fix specification of domestic production deduction under TCJA #2807

Merged
merged 12 commits into from
Sep 26, 2024
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ comment:

ignore:
- "setup.py"
- "update_pcl.py"
- "ppp.py"
- "extend_tcja.py"
2 changes: 0 additions & 2 deletions taxcalc.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ taxcalc/reforms/ptaxes2.json
taxcalc/reforms/ptaxes2.out.csv
taxcalc/reforms/ptaxes3.json
taxcalc/reforms/ptaxes3.out.csv
taxcalc/reforms/rounding2022.json
taxcalc/reforms/rounding2022.out.csv
taxcalc/reforms/archive/Clinton2016.json
taxcalc/reforms/archive/RyanBrady.json
taxcalc/reforms/archive/TCJA_House.json
Expand Down
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 = 2022 # last year for which indexed param vals are known
LAST_KNOWN_YEAR = 2023 # last year for which indexed param vals are known
# should increase LAST_KNOWN_YEAR by one every calendar year
LAST_BUDGET_YEAR = 2034 # last extrapolation year
# should increase LAST_BUDGET_YEAR by one every calendar year
Expand Down
Loading
Loading