Commit b55ce9a
committed
Fix numpy 2.4.0 compatibility in create_violin()
Fixes #5461
The 'interpolation' parameter was deprecated in numpy.percentile() and
removed in numpy 2.4.0. It has been replaced with the 'method' parameter
which uses the same values.
Changed all three np.percentile() calls in calc_stats() from using
'interpolation' to 'method'.1 parent 55597ab commit b55ce9a
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
22 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
0 commit comments