Skip to content

Commit 3c7ac1b

Browse files
Loosen numpy constraints (#278)
I believe these constraints were taken from mlir/python/requirements.txt, which seems arbitrarily constrained. I can't find anything in newer numpy versions that would break the bindings, and I've been using 2.3.5 with these bindings and the extras for a while with no issues.
1 parent 31208a3 commit 3c7ac1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
cloudpickle>=3.0.0
2-
numpy>=1.19.5, <=2.1.2
2+
numpy>=1.19.5

projects/mlir-python-bindings/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "mlir-python-bindings"
88
dynamic = ["version"]
99
requires-python = ">=3.8"
1010
dependencies = [
11-
"numpy>=1.19.5, <=2.3.0",
11+
"numpy>=1.19.5",
1212
"PyYAML>=5.4.0, <=6.0.1",
1313
"ml_dtypes>=0.1.0, <=0.6.0; python_version<'3.13'",
1414
"ml_dtypes>=0.5.0, <=0.6.0; python_version>='3.13'",

0 commit comments

Comments
 (0)