Skip to content

Commit

Permalink
fix for #163 and minor version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
OnnoEbbens authored Apr 12, 2023
1 parent 7a8e495 commit feb6b46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nlmod/gwf/surface_water.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def add_stages_from_waterboards(
if len(la[wb]) == 0:
continue
mask = gdf["bronhouder"] == config[wb]["bgt_code"]
gdf[mask] = add_info_to_gdf(
gdf.loc[mask] = add_info_to_gdf(
la[wb],
gdf[mask],
columns=columns,
Expand Down Expand Up @@ -764,7 +764,7 @@ def add_bottom_height_from_waterboards(
if len(wc[wb]) == 0:
continue
mask = gdf["bronhouder"] == config[wb]["bgt_code"]
gdf[mask] = add_info_to_gdf(
gdf.loc[mask] = add_info_to_gdf(
wc[wb],
gdf[mask],
columns=columns,
Expand Down
2 changes: 1 addition & 1 deletion nlmod/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from importlib import metadata
from platform import python_version

__version__ = "0.5.2"
__version__ = "0.5.3"


def show_versions() -> None:
Expand Down

0 comments on commit feb6b46

Please sign in to comment.