File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ - bump : minor
2+ changes :
3+ changed :
4+ - Use Enhanced CPS (enhanced_cps_2024.h5) as the default dataset for US nationwide simulations instead of CPS 2023.
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def _get_default_us_dataset(region: str | None) -> str:
4646 region_type = determine_us_region_type (region )
4747
4848 if region_type == "nationwide" :
49- return CPS_2023
49+ return ECPS_2024
5050 elif region_type == "city" :
5151 # TODO: Implement a better approach to this for our one
5252 # city, New York City.
Original file line number Diff line number Diff line change 1+ import pytest
2+
3+
14def test_us_macro_single ():
25 from policyengine import Simulation
36
@@ -23,6 +26,7 @@ def test_us_macro_comparison():
2326 sim .calculate_economy_comparison ()
2427
2528
29+ @pytest .mark .skip (reason = "Cliff calculations too slow with ECPS_2024 dataset" )
2630def test_us_macro_cliff_impacts ():
2731 from policyengine import Simulation
2832
You can’t perform that action at this time.
0 commit comments