Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ test: tmd_files
--ignore=tests/test_prepare_targets.py

.PHONY=data
data: install tmd_files test warnings
data: install clean format lint tmd_files test warnings

.PHONY=warnings
warnings:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ To generate the TMD files from the PUF files, do this:
1. Copy the two 2015 PUF files to the `tmd/storage/input` folder
2. Install the SIPP files described in `tmd/storage/input/SIPP24/README.md`
3. Install the CEX files described in `tmd/storage/input/CEX23/README.md`
4. Run `make clean` in the repository's top-level folder
5. Run `make data` in the repository's top-level folder
4. Run `make data` in the repository's top-level folder

The `make data` command creates and tests the three national
`tmd*csv*` data files, which are located in the `tmd/storage/output`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
packages=find_packages(),
python_requires=">=3.11,<3.14",
install_requires=[
"taxcalc>=6.5.2",
"taxcalc>=6.5.3",
"numpy",
"pandas>=3.0.2",
"clarabel",
Expand Down
6 changes: 3 additions & 3 deletions tests/test_imputed_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ def actual_results(rdf, bdf):
# https://taxpolicycenter.org/model-estimates/T25-0257
# Note that the $1081 TPC estimate is derived by dividing
# the all-unit average of $320 by the 0.296 affpct.
"exp_totben_2022": 60.86,
"exp_affpct_2022": 28.62,
"exp_affben_2022": 1086,
"exp_totben_2022": 58.89,
"exp_affpct_2022": 28.24,
"exp_affben_2022": 1065,
},
}
output_variables = [
Expand Down
Loading