taxcalc 4.3.2__py3-none-any.whl → 4.3.3__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/policy.py +1 -1
- taxcalc/policy_current_law.json +1297 -31
- taxcalc/reforms/ext.json +20 -20
- taxcalc/tests/cpscsv_agg_expect.csv +15 -15
- taxcalc/tests/puf_var_wght_means_by_year.csv +4 -4
- taxcalc/tests/pufcsv_agg_expect.csv +16 -16
- taxcalc/tests/test_reforms.py +1 -1
- {taxcalc-4.3.2.dist-info → taxcalc-4.3.3.dist-info}/METADATA +1 -1
- {taxcalc-4.3.2.dist-info → taxcalc-4.3.3.dist-info}/RECORD +14 -14
- {taxcalc-4.3.2.dist-info → taxcalc-4.3.3.dist-info}/WHEEL +1 -1
- {taxcalc-4.3.2.dist-info → taxcalc-4.3.3.dist-info}/LICENSE +0 -0
- {taxcalc-4.3.2.dist-info → taxcalc-4.3.3.dist-info}/entry_points.txt +0 -0
- {taxcalc-4.3.2.dist-info → taxcalc-4.3.3.dist-info}/top_level.txt +0 -0
taxcalc/__init__.py
CHANGED
taxcalc/policy.py
CHANGED
@@ -38,7 +38,7 @@ class Policy(Parameters):
|
|
38
38
|
DEFAULTS_FILE_NAME = 'policy_current_law.json'
|
39
39
|
DEFAULTS_FILE_PATH = os.path.abspath(os.path.dirname(__file__))
|
40
40
|
JSON_START_YEAR = 2013 # remains the same unless earlier data added
|
41
|
-
LAST_KNOWN_YEAR =
|
41
|
+
LAST_KNOWN_YEAR = 2025 # last year for which indexed param vals are known
|
42
42
|
# should increase LAST_KNOWN_YEAR by one every calendar year
|
43
43
|
LAST_BUDGET_YEAR = 2034 # last extrapolation year
|
44
44
|
# should increase LAST_BUDGET_YEAR by one every calendar year
|