File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.8 (2025-05-29)
4
+
5
+ - Add a CLI option, ` --doctest-only-doctests={true,false} ` to control whether to only
6
+ collect doctests (` true ` , default) or also collect "regular" unit tests (` false ` ).
7
+ Currently the default is to only collect doctests; in a next major version, the
8
+ default will change to ` false ` to align the behavior of ` pytest --doctest-modules `
9
+ with the vanilla pytest behavior. See [ gh-198 ] ( https://github.com/scipy/scipy_doctest/issues/198 )
10
+ for discussion.
11
+ - Fix doctesting dictionaries. Previously, only keys were checked and the values
12
+ were not.
13
+ - Work around [ a pytest issue] ( https://github.com/pytest-dev/pytest/discussions/13353 ) ,
14
+ which led to spurious test failures with ` scipy>=1.5 ` .
15
+ See [ gh-184 ] ( https://github.com/scipy/scipy_doctest/issues/184 ) for details.
16
+
17
+
3
18
## v1.7.1 (2025-04-04)
4
19
5
20
This version fixes a packaging error of v1.7, where the wheel and sdist contained extra files and
Original file line number Diff line number Diff line change 3
3
"""
4
4
5
5
6
- __version__ = "1.8.dev0 "
6
+ __version__ = "1.8.0 "
7
7
8
8
try :
9
9
# register internal modules with pytest; obscure errors galore otherwise
You can’t perform that action at this time.
0 commit comments