Skip to content

Commit

Permalink
Merge pull request #621 from Breakthrough-Energy/develop
Browse files Browse the repository at this point in the history
merge develop into master for v0.5.2 release
  • Loading branch information
danielolsen authored Apr 20, 2022
2 parents 400cad3 + b3e0e8b commit e5b4af2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion powersimdata/input/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def decompose_plant_data_frame_into_resources(df, resources, grid):
resources = _check_resources_are_in_grid_and_format(resources, grid)

df_resources = {
r: df[list(get_plant_id_for_resources(r, grid)) & plant_id].sort_index(axis=1)
r: df[list(get_plant_id_for_resources(r, grid) & plant_id)].sort_index(axis=1)
for r in resources
}
return df_resources
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = powersimdata
version = 0.5.1
version = 0.5.2
author = Breakthrough Energy
author_email = [email protected]
description = Power Simulation Data
Expand Down

0 comments on commit e5b4af2

Please sign in to comment.