Skip to content

Commit 8ea05dc

Browse files
authored
Merge pull request #476 from PSLmodels/2-0-0
Update version to 2.0.0 which requires taxcalc 6.5.0+
2 parents e863e23 + 89dbdd3 commit 8ea05dc

2 files changed

Lines changed: 21 additions & 31 deletions

File tree

README.md

Lines changed: 19 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
# tax-microdata
22

3-
This repository contains all working files for a project to develop a
4-
general-purpose validated microdata file for use in
5-
[PolicyEngine-US](https://github.com/PolicyEngine/policyengine-us) and
6-
[Tax-Calculator](https://github.com/PSLmodels/Tax-Calculator). The
7-
development will proceed in several phases.
3+
This repository contains all working files for a project to develop
4+
validated input files for use in
5+
[Tax-Calculator](https://github.com/PSLmodels/Tax-Calculator).
86

9-
The **current version is 1.2.0**, which was released March 1, 2026,
7+
The **current version is 2.0.0**, which was released on March 29, 2026,
108
and includes the following significant improvements:
11-
- impute values for three variables used in new OBBBA deductions:
12-
[#397](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/397)
13-
- fix long-standing bug in IRS PUF data handling:
14-
[#408](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/408)
9+
10+
- generate national, state, and Congressional district, input files
11+
for **2022**:
12+
[#470](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/470)
13+
[#471](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/471)
14+
[#472](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/472)
15+
[#473](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/473)
16+
[#474](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/474)
17+
- improve the selection of CPS tax units to represent nonfilers:
18+
[#438](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/438)
1519
- vastly improve the reweighting algorithm:
1620
[#416](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/416)
17-
21+
- impute values for three variables used in new OBBBA deductions:
22+
[#397](https://github.com/PSLmodels/tax-microdata-benchmarking/pull/397)
1823

1924
## Usage instructions
2025

@@ -31,25 +36,10 @@ To generate the TMD files from the PUF files, do this:
3136
4. Run `make clean` in the repository's top-level folder
3237
5. Run `make data` in the repository's top-level folder
3338

34-
The `make data` command creates and tests the three `tmd*csv*` data
35-
files, which are located in the `tmd/storage/output` folder. Read
36-
[this
39+
The `make data` command creates and tests the three national
40+
`tmd*csv*` data files, which are located in the `tmd/storage/output`
41+
folder. Read [this
3742
documentation](https://taxcalc.pslmodels.org/usage/data.html#irs-public-use-data-tmd-csv)
3843
on how to use these three files with Tax-Calculator. Also, you can
3944
look at the tests in this repository to see Python code that uses the
4045
TMD files with Tax-Calculator.
41-
42-
## Examination results
43-
44-
To assess, review the data examination results that compare federal
45-
agency tax microsimulation estimates for 2023 and 2026 with those
46-
generated using the national microdata files created in each project
47-
phase:
48-
* [phase 1 results](./tmd/examination/results1.md)
49-
* [phase 2 results](./tmd/examination/results2.md)
50-
* [phase 3 results](./tmd/examination/results3.md)
51-
* [phase 4+ results](./tmd/examination/results4.md)
52-
53-
2022 TMD estimates have also been compared with IRS/SOI data on actual
54-
income tax returns for 2022 in [this
55-
document](./tmd/examination/2022/results.md).

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
setup(
44
name="tmd",
5-
version="1.2.0",
5+
version="2.0.0",
66
packages=find_packages(),
77
python_requires=">=3.11,<3.14",
88
install_requires=[
9-
"taxcalc>=6.4.1",
9+
"taxcalc>=6.5.0",
1010
"clarabel",
1111
"scikit-learn",
1212
"scipy",

0 commit comments

Comments
 (0)