Skip to content

Commit 2cf78c1

Browse files
committed
chore: remove upper bound on numpy and scipy versions
Remove the upper version constraints on numpy (<2) and scipy (<1.12.0) to allow compatibility with numpy 2.x and newer scipy versions. - numpy: Changed from ">=1.26.0, <2" to ">=1.26.0" - scipy: Changed from ">=1.7.3, <1.12.0" to ">=1.7.3" This enables users to install giskard alongside other libraries that require numpy 2.x, which has been stable for over a year. Note: PR #2222 already fixed the deprecated scipy.stats.stats imports that were blocking scipy 1.12+ compatibility. Fixes #2173 Signed-off-by: majiayu000 <[email protected]>
1 parent c92584e commit 2cf78c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ dependencies = [
155155
"cloudpickle>=1.1.1",
156156
"zstandard>=0.10.0",
157157
"mlflow-skinny>=2",
158-
"numpy>=1.26.0, <2",
158+
"numpy>=1.26.0",
159159
"scikit-learn>=1.0",
160-
"scipy>=1.7.3, <1.12.0",
160+
"scipy>=1.7.3",
161161
"mixpanel>=4.4.0",
162162
"requests>=2.19",
163163
"pydantic<3,>1",

0 commit comments

Comments
 (0)