We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7be1e7c + 389090a commit d16a4adCopy full SHA for d16a4ad
.python-version
@@ -1 +1 @@
1
-3.10.9
+3.11.13
pyproject.toml
@@ -2,12 +2,14 @@
2
name = "arnoldi"
3
description = "A Krylov-Schur implementation of eigensolver for sparse matrices"
4
readme = "README.md"
5
-requires-python = ">=3.10"
+requires-python = ">=3.11"
6
authors = [
7
{ name = "David Cournapeau", email = "cournape@gmail.com" }
8
]
9
dependencies = [
10
- "numpy>=2.0",
+ # Adding the macos update to temporarily deal w/ https://github.com/numpy/numpy/issues/28687
11
+ "numpy>=2.3; sys_platform == 'darwin'",
12
+ "numpy>=2.0; sys_platform != 'darwin'",
13
"scipy>=1.15.3",
14
15
dynamic = ["version"]
0 commit comments