Skip to content

Commit

Permalink
fixing inf issue
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Jan 31, 2025
1 parent 4c1ddbf commit b97353e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ keywords =
zip_safe = True
python_requires = >=3.10
install_requires =
pymetadata>=0.4.1
pymetadata>=0.5.2

depinfo
rich
Expand All @@ -58,7 +58,7 @@ install_requires =
pydantic>2.8

setuptools # fix for colorbrewer dependency of py4cytoscape
numpy>=1.26.4
numpy>=2.2.2
python-libsbml>=5.20.4
antimony>=2.15.0
scipy>=1.14
Expand Down
2 changes: 1 addition & 1 deletion src/sbmlutils/examples/fbc/fbc_userdefinedconstraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class U(Units):
parameters=[
Parameter(sid="uc1", value=5),
Parameter(sid="uc2lb", value=2),
Parameter(sid="uc2ub", value=np.Inf),
Parameter(sid="uc2ub", value=np.inf),
Parameter(sid="Avar", value=NaN, constant=False),
],
reactions=[
Expand Down

0 comments on commit b97353e

Please sign in to comment.