Skip to content

Commit e1a9521

Browse files
authored
MAINT : stop upper capping scipy (#187)
Work around an issue where pytest and scipy>=1.5.x conspire : pytest-dev/pytest#13353
1 parent 783b557 commit e1a9521

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies = [
2525

2626
[project.optional-dependencies]
2727
test = [
28-
"scipy <= 1.14.1", # black-list 1.5.1 ?
28+
"scipy",
2929
"matplotlib"
3030
]
3131
doc = [

scipy_doctest/tests/test_testmod.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
try:
1717
import scipy # noqa
18+
from scipy import stats # https://github.com/scipy/scipy_doctest/issues/184
1819
HAVE_SCIPY = True
1920
except Exception:
2021
HAVE_SCIPY = False

0 commit comments

Comments
 (0)