Skip to content

Commit d2a4109

Browse files
Merge pull request #45 from ihmeuw/develop
Release v0.3.2
2 parents a30dab8 + 1bf63cd commit d2a4109

21 files changed

+19
-9
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**0.3.2 - 04/10/23**
2+
3+
- Update sample datasets
4+
15
**0.3.1 - 04/10/23**
26

37
- Build docs to readthedocs

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ include README.rst
88
recursive-include docs *
99
prune docs/_build
1010

11-
recursive-include src/pseudopeople *.py *.yaml *.csv *.hdf
11+
recursive-include src/pseudopeople *.py *.yaml *.csv *.parquet
1212
recursive-include tests *.py *txt *.yaml

src/pseudopeople/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__summary__ = "pseudopeople is package which adds noise to simulated census-scale data using standard scientific Python tools."
1414
__uri__ = "https://github.com/ihmeuw/pseudopeople"
1515

16-
__version__ = "0.3.1"
16+
__version__ = "0.3.2"
1717

1818
__author__ = "The pseudopeople developers"
1919
__email__ = "vivarium.dev@gmail.com"

src/pseudopeople/constants/paths.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
QWERTY_ERRORS = DATA_ROOT / "qwerty_errors.yaml"
1010

1111
SAMPLE_DATA_ROOT = DATA_ROOT / "sample_forms"
12-
SAMPLE_DECENNIAL_CENSUS = SAMPLE_DATA_ROOT / "decennial_census_observer.hdf"
13-
SAMPLE_TAXES_W2_AND_1099 = SAMPLE_DATA_ROOT / "tax_w2_observer.hdf"
14-
SAMPLE_AMERICAN_COMMUNITIES_SURVEY = SAMPLE_DATA_ROOT / "household_survey_observer_acs.hdf"
15-
SAMPLE_CURRENT_POPULATION_SURVEY = SAMPLE_DATA_ROOT / "household_survey_observer_cps.hdf"
16-
SAMPLE_SOCIAL_SECURITY = SAMPLE_DATA_ROOT / "social_security_observer.hdf"
17-
SAMPLE_WOMEN_INFANTS_AND_CHILDREN = SAMPLE_DATA_ROOT / "wic_observer.hdf"
12+
SAMPLE_DECENNIAL_CENSUS = SAMPLE_DATA_ROOT / "decennial_census_observer.parquet"
13+
SAMPLE_TAXES_W2_AND_1099 = SAMPLE_DATA_ROOT / "tax_w2_observer.parquet"
14+
SAMPLE_AMERICAN_COMMUNITIES_SURVEY = (
15+
SAMPLE_DATA_ROOT / "household_survey_observer_acs.parquet"
16+
)
17+
SAMPLE_CURRENT_POPULATION_SURVEY = SAMPLE_DATA_ROOT / "household_survey_observer_cps.parquet"
18+
SAMPLE_SOCIAL_SECURITY = SAMPLE_DATA_ROOT / "social_security_observer.parquet"
19+
SAMPLE_WOMEN_INFANTS_AND_CHILDREN = SAMPLE_DATA_ROOT / "wic_observer.parquet"
-918 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)