Skip to content

Commit

Permalink
Only exclude SciPy version 1.12
Browse files Browse the repository at this point in the history
SciPy 1.13 fixed the sparse matrix ordering problem we had with the tests, so we can now use that.
  • Loading branch information
imciner2 authored May 14, 2024
1 parent 1ef0fc2 commit 973c228
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ dependencies = [
"jinja2",
"numpy>=1.7",
"qdldl",
"scipy>=0.13.2,<1.12.0",
# Exclude scipy 1.12 because the random sparse array function started returning
# the transpose of the original, breaking the unit tests. This was fixed in 1.13.0.
# ref: https://github.com/scipy/scipy/issues/20027
"scipy>=0.13.2,!=1.12.0",
"setuptools",
"joblib",
]
Expand Down

0 comments on commit 973c228

Please sign in to comment.