Skip to content

Commit

Permalink
BLD: Fix broken versions (#512)
Browse files Browse the repository at this point in the history
* BLD: Fix broken versions

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

* BLD: Chasing errors, limit scipy/arviz in SBR

To test the notebooks, need to install SBR extras, which included a version
of arviz that isn't available on 3.9.  Earlier version works, but restricts
scipy version
  • Loading branch information
Jacob-Stevens-Haas authored May 29, 2024
1 parent 7f5c7b7 commit 22236b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 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,8 @@ cvxpy = [
sbr = [
"numpyro",
"jax",
"arviz"
"arviz==0.17.1",
"scipy<1.13.0"
]

[tool.black]
Expand Down

0 comments on commit 22236b5

Please sign in to comment.