Skip to content

Commit 3cb67de

Browse files
authored
Merge pull request #200 from scipy/release_1.8
Release 1.8 branch
2 parents 827a054 + cbd83c0 commit 3cb67de

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

docs/changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

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+
318
## v1.7.1 (2025-04-04)
419

520
This version fixes a packaging error of v1.7, where the wheel and sdist contained extra files and

scipy_doctest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55

6-
__version__ = "1.8.dev0"
6+
__version__ = "1.8.0"
77

88
try:
99
# register internal modules with pytest; obscure errors galore otherwise

0 commit comments

Comments
 (0)