Skip to content

Commit 4e62e44

Browse files
authored
restrict Numpy <= 2.3 due to einsum bug (#532)
1 parent 363ee18 commit 4e62e44

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ classifiers = [
2525
]
2626
dependencies = [
2727
"jax",
28-
"numpy",
28+
# restrict Numpy version due to https://github.com/pyscf/pyscf/issues/3079
29+
# TODO remove this when it's fixed
30+
"numpy <= 2.3",
2931
"opt_einsum",
3032
"orjson",
3133
"pyscf >= 2.9",
32-
"qiskit >= 2.0.0",
34+
"qiskit >= 2.0",
3335
"scipy",
3436
"typing-extensions",
3537
]

0 commit comments

Comments
 (0)