Skip to content

Commit b97353e

Browse files
fixing inf issue
1 parent 4c1ddbf commit b97353e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ keywords =
4747
zip_safe = True
4848
python_requires = >=3.10
4949
install_requires =
50-
pymetadata>=0.4.1
50+
pymetadata>=0.5.2
5151

5252
depinfo
5353
rich
@@ -58,7 +58,7 @@ install_requires =
5858
pydantic>2.8
5959

6060
setuptools # fix for colorbrewer dependency of py4cytoscape
61-
numpy>=1.26.4
61+
numpy>=2.2.2
6262
python-libsbml>=5.20.4
6363
antimony>=2.15.0
6464
scipy>=1.14

src/sbmlutils/examples/fbc/fbc_userdefinedconstraints.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class U(Units):
4949
parameters=[
5050
Parameter(sid="uc1", value=5),
5151
Parameter(sid="uc2lb", value=2),
52-
Parameter(sid="uc2ub", value=np.Inf),
52+
Parameter(sid="uc2ub", value=np.inf),
5353
Parameter(sid="Avar", value=NaN, constant=False),
5454
],
5555
reactions=[

0 commit comments

Comments
 (0)