File tree Expand file tree Collapse file tree
policyengine_us_data/datasets Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 with :
6161 python-version : 3.12
6262 - name : Install package
63- run : pip install -e ".[dev]"
63+ run : make install
6464 - name : Download data inputs
6565 run : make download
6666 env :
Original file line number Diff line number Diff line change 3838 with :
3939 python-version : 3.12
4040 - name : Install package
41- run : pip install -e ".[dev]"
41+ run : make install
4242 - name : Download data inputs
4343 run : make download
4444 env :
7373 with :
7474 python-version : 3.12
7575 - name : Install package
76- run : pip install -e ".[dev]"
76+ run : make install
7777 - name : Build package
7878 run : python -m build
7979 - name : Publish a git tag
Original file line number Diff line number Diff line change 1010
1111install :
1212 pip install -e " .[dev]"
13+ pip install policyengine-us==1.100.0
1314
1415changelog :
1516 build-changelog changelog.yaml --output changelog.yaml --update-last-date --start-from 1.0.0 --append-file changelog_entry.yaml
Original file line number Diff line number Diff line change 1+ - bump : minor
2+ changes :
3+ fixed :
4+ - Moved PolicyEngine US out of setup.py dependencies.
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ class ACS_2022(ACS):
111111 time_period = 2022
112112 file_path = STORAGE_FOLDER / "acs_2022.h5"
113113 census_acs = CensusACS_2022
114- url = "release://PolicyEngine/policyengine-us-data/1.7 .0/acs_2022.h5"
114+ url = "release://PolicyEngine/policyengine-us-data/1.8 .0/acs_2022.h5"
115115
116116
117117if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ class CPS_2024(CPS):
622622 label = "CPS 2024 (2022-based)"
623623 file_path = STORAGE_FOLDER / "cps_2024.h5"
624624 time_period = 2024
625- url = "release://policyengine/policyengine-us-data/1.7 .0/cps_2024.h5"
625+ url = "release://policyengine/policyengine-us-data/1.8 .0/cps_2024.h5"
626626
627627
628628class PooledCPS (Dataset ):
@@ -681,7 +681,7 @@ class Pooled_3_Year_CPS_2023(PooledCPS):
681681 CPS_2023 ,
682682 ]
683683 time_period = 2023
684- url = "release://PolicyEngine/policyengine-us-data/1.7 .0/pooled_3_year_cps_2023.h5"
684+ url = "release://PolicyEngine/policyengine-us-data/1.8 .0/pooled_3_year_cps_2023.h5"
685685
686686
687687if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ class EnhancedCPS_2024(EnhancedCPS):
177177 name = "enhanced_cps_2024"
178178 label = "Enhanced CPS 2024"
179179 file_path = STORAGE_FOLDER / "enhanced_cps_2024.h5"
180- url = "release://policyengine/policyengine-us-data/1.7 .0/enhanced_cps_2024.h5"
180+ url = "release://policyengine/policyengine-us-data/1.8 .0/enhanced_cps_2024.h5"
181181
182182
183183if __name__ == "__main__" :
Original file line number Diff line number Diff line change 11from tqdm import tqdm
22import numpy as np
33import pandas as pd
4- from microdf import MicroDataFrame
4+ from policyengine_core . weighting import MicroDataFrame
55from policyengine_core .data import Dataset
66from policyengine_us_data .storage import STORAGE_FOLDER
77from policyengine_us_data .datasets .puf .uprate_puf import uprate_puf
@@ -493,15 +493,15 @@ class PUF_2021(PUF):
493493 name = "puf_2021"
494494 time_period = 2021
495495 file_path = STORAGE_FOLDER / "puf_2021.h5"
496- url = "release://policyengine/irs-soi-puf/1.7 .0/puf_2021.h5"
496+ url = "release://policyengine/irs-soi-puf/1.8 .0/puf_2021.h5"
497497
498498
499499class PUF_2024 (PUF ):
500500 label = "PUF 2024 (2015-based)"
501501 name = "puf_2024"
502502 time_period = 2024
503503 file_path = STORAGE_FOLDER / "puf_2024.h5"
504- url = "release://policyengine/irs-soi-puf/1.7 .0/puf_2024.h5"
504+ url = "release://policyengine/irs-soi-puf/1.8 .0/puf_2024.h5"
505505
506506
507507MEDICAL_EXPENSE_CATEGORY_BREAKDOWNS = {
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ dependencies = [
2222dev = [
2323 " black" ,
2424 " pytest" ,
25- " policyengine_us==1.100.0" ,
2625 " quantile-forest" ,
2726 " torch" ,
2827 " tables" ,
You can’t perform that action at this time.
0 commit comments