We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f2ea39 commit 0583348Copy full SHA for 0583348
release-notes/0.9.1.md
@@ -0,0 +1,10 @@
1
+# Release notes for sbmlutils 0.9.1
2
+
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
@@ -316,7 +316,7 @@ def _check_consistency(
316
if internal_consistency:
317
count = doc.checkInternalConsistency()
318
else:
319
- count = doc.checkConsistency()
+ count = doc.checkConsistencyWithStrictUnits()
320
321
if count > 0:
322
for i in range(count):
0 commit comments