Skip to content

Commit 14c8b34

Browse files
authored
Merge pull request PyDMD#534 from PyDMD/bump-scipy-min-version
Bump SciPy minimum version to `1.6.0`
2 parents d67a115 + 1ef6132 commit 14c8b34

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
REQUIRED = [
1717
"numpy<2",
18-
"scipy",
18+
"scipy>=1.6.0",
1919
"matplotlib",
2020
"scikit-learn",
2121
"xarray",

tutorials/tutorial2/tutorial-2-adv-dmd.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
}
271271
],
272272
"source": [
273-
"compute_integral = scipy.integrate.trapz\n",
273+
"compute_integral = scipy.integrate.trapezoid\n",
274274
"\n",
275275
"original_int = [\n",
276276
" compute_integral(compute_integral(snapshot)).real for snapshot in snapshots\n",

0 commit comments

Comments
 (0)