Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed Jun 23, 2023
1 parent 1b0ed1d commit 3ddf9ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion premise_gwp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ def add_premise_gwp():
category.drop_unlinked()

# check that no flow is unlinked
assert len(list(category.unlinked)) == 0
assert len(list(category.unlinked)) == 0, "Unlinked flows: {}".format(
list(category.unlinked)
)

# write method
category.write_methods(overwrite=True, verbose=True)
2 changes: 1 addition & 1 deletion premise_gwp/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = (0, 9, 2)
version = (0, 9, 3)

0 comments on commit 3ddf9ab

Please sign in to comment.