Skip to content

Commit 0583348

Browse files
applying strict unit checking
1 parent 3f2ea39 commit 0583348

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

release-notes/0.9.1.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Release notes for sbmlutils 0.9.1
2+
![sbmlutils](https://github.com/matthiaskoenig/sbmlutils/raw/develop/docs_builder/images/sbmlutils-logo-60.png)
3+
4+
We are pleased to release the next version of sbmlutils including the
5+
following changes:
6+
7+
# Features
8+
- applying strict unit checking (see https://github.com/sbmlteam/libsbml/issues/378)
9+
10+
Your sbmlutils team

src/sbmlutils/validation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def _check_consistency(
316316
if internal_consistency:
317317
count = doc.checkInternalConsistency()
318318
else:
319-
count = doc.checkConsistency()
319+
count = doc.checkConsistencyWithStrictUnits()
320320

321321
if count > 0:
322322
for i in range(count):

0 commit comments

Comments
 (0)