Skip to content

Commit e8a7d30

Browse files
committed
Fix scipy version
1 parent 9577f11 commit e8a7d30

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/array_api_extra/_delegation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,9 @@ def quantile(
307307
import scipy
308308
from packaging import version
309309

310-
# The quantile function in scipy 1.17 supports array API directly, no need
310+
# The quantile function in scipy 1.16 supports array API directly, no need
311311
# to delegate
312-
if version.parse(scipy.__version__) >= version.parse("1.17"):
312+
if version.parse(scipy.__version__) >= version.parse("1.16"):
313313
from scipy.stats import quantile as scipy_quantile
314314

315315
return scipy_quantile(x, p=q, axis=axis, keepdims=keepdims, method=method)

0 commit comments

Comments
 (0)