Skip to content

Commit

Permalink
Merge pull request #2816 from martinholmer/add-2024-param-vals
Browse files Browse the repository at this point in the history
Add known values of 2024 policy parameters
  • Loading branch information
martinholmer authored Sep 28, 2024
2 parents 76ccd83 + ed04e7a commit 1fdf79b
Show file tree
Hide file tree
Showing 9 changed files with 1,441 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash -l {0}
working-directory: ./
run: |
pytest -m 'not requires_pufcsv and not requires_tmdcsv and not pre_release and not local' --cov=./ --cov-report=xml
pytest -m 'not requires_pufcsv and not pre_release and not local' --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && contains(github.repository, 'PSLmodels/Tax-Calculator')
uses: codecov/codecov-action@v4
Expand Down
7 changes: 4 additions & 3 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ testpaths =
markers =
requires_pufcsv
pre_release
compatible_data
local
benefits
itmded_vars
compatible_data
cpscsv_agg
extend_tcja
itmded_vars
pufcsv_agg
reforms
rtr
extend_tcja
stded
2 changes: 1 addition & 1 deletion taxcalc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
from taxcalc.utils import *
from taxcalc.cli import *

__version__ = '4.2.2a'
__version__ = '4.2.2b'
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 = 2023 # last year for which indexed param vals are known
LAST_KNOWN_YEAR = 2024 # 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

0 comments on commit 1fdf79b

Please sign in to comment.