Skip to content

Commit

Permalink
applying strict unit checking
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Aug 15, 2024
1 parent 3f2ea39 commit 0583348
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions release-notes/0.9.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Release notes for sbmlutils 0.9.1
![sbmlutils](https://github.com/matthiaskoenig/sbmlutils/raw/develop/docs_builder/images/sbmlutils-logo-60.png)

We are pleased to release the next version of sbmlutils including the
following changes:

# Features
- applying strict unit checking (see https://github.com/sbmlteam/libsbml/issues/378)

Your sbmlutils team
2 changes: 1 addition & 1 deletion src/sbmlutils/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def _check_consistency(
if internal_consistency:
count = doc.checkInternalConsistency()
else:
count = doc.checkConsistency()
count = doc.checkConsistencyWithStrictUnits()

if count > 0:
for i in range(count):
Expand Down

0 comments on commit 0583348

Please sign in to comment.