Skip to content

Commit

Permalink
BLD: Fix broken versions
Browse files Browse the repository at this point in the history
Arviz uses scipy.signal.gaussian, which was removed in 1.13.  Most recent
arviz uses scipy.signal.windows.gaussian

scikit-learn 1.5.0 contained a regression
(scikit-learn/scikit-learn#28352)
that has been fixed in
scikit-learn/scikit-learn#29078
  • Loading branch information
Jacob-Stevens-Haas committed May 29, 2024
1 parent 7f5c7b7 commit 20ad560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
]
readme = "README.rst"
dependencies = [
"scikit-learn>=1.1",
"scikit-learn>=1.1, !=1.5.0",
"derivative>=0.5.4",
]

Expand Down Expand Up @@ -64,7 +64,7 @@ cvxpy = [
sbr = [
"numpyro",
"jax",
"arviz"
"arviz>=0.18"
]

[tool.black]
Expand Down

0 comments on commit 20ad560

Please sign in to comment.