diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29b..e9d92674 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: patch + changes: + added: + - cps_2024.h5 to HuggingFace upload list so the raw (unenhanced) 2024 CPS dataset is published diff --git a/policyengine_us_data/storage/upload_completed_datasets.py b/policyengine_us_data/storage/upload_completed_datasets.py index c8b903cf..a1e68575 100644 --- a/policyengine_us_data/storage/upload_completed_datasets.py +++ b/policyengine_us_data/storage/upload_completed_datasets.py @@ -1,6 +1,7 @@ from policyengine_us_data.datasets import ( EnhancedCPS_2024, ) +from policyengine_us_data.datasets.cps.cps import CPS_2024 from policyengine_us_data.storage import STORAGE_FOLDER from policyengine_us_data.utils.data_upload import upload_data_files from google.cloud import storage @@ -10,6 +11,7 @@ def upload_datasets(): dataset_files = [ EnhancedCPS_2024.file_path, + CPS_2024.file_path, STORAGE_FOLDER / "small_enhanced_cps_2024.h5", STORAGE_FOLDER / "calibration" / "policy_data.db", ]