Skip to content

Commit 00aa794

Browse files
authored
allow scipy version 1.15 (#666)
1 parent 7cab028 commit 00aa794

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

preliz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from preliz.internal.citations import citations
1818

1919

20-
__version__ = "0.16.0"
20+
__version__ = "0.17.0"
2121

2222

2323
# Allow legend outside plot in maxent to be included in the saved figure

preliz/tests/test_quartile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
(Normal(), -1, 0, 1, (0, 1.482)),
7676
(Pareto(), 0.5, 1, 4, (0.541, 0.289)),
7777
(Rice(), 2, 4, 6, (0, 3.395)),
78-
(SkewStudentT(), 2, 4, 6, (4, 2.648, 1.663, 1.663)),
78+
(SkewStudentT(), 2, 4, 6, (4.000, 2.648, 1.663, 1.663)),
7979
pytest.param(
8080
StudentT(),
8181
-1,
@@ -100,7 +100,7 @@
100100
(HyperGeometric(), 3, 4, 5, (50, 10, 20)),
101101
(NegativeBinomial(), 3, 5, 10, (7.283, 2.167)),
102102
(Poisson(), 4, 5, 6, (5.641)),
103-
(ZeroInflatedBinomial(), 1, 4, 7, (0.660, 10.947, 0.670)),
103+
(ZeroInflatedBinomial(), 1, 4, 7, (0.660, 10.983, 0.670)),
104104
(ZeroInflatedBinomial(psi=0.7), 2, 4, 6, (10.0, 0.571)),
105105
(ZeroInflatedNegativeBinomial(), 2, 4, 6, (0.87, 5.24, 17.49)),
106106
(ZeroInflatedNegativeBinomial(psi=0.9), 2, 4, 6, (5.16, 11.32)),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies = [
2828
"matplotlib>=3.7",
2929
"numba>=0.59",
3030
"numpy>=1.24",
31-
"scipy>=1.10, <1.15"
31+
"scipy>=1.10, <1.16"
3232
]
3333

3434
[tool.flit.module]

0 commit comments

Comments
 (0)