Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e2e4313
MAINT: require scipy_doctest>=1.8.0
ev-br May 29, 2025
4f2a870
Merge pull request #805 from ev-br/scipy-doctest-1.8
rgommers May 29, 2025
ddf27d7
BLD/CI: Use cibuildwheel v3 (#810)
agriyakhetarpal Jul 27, 2025
26fe03d
CI: pin setup-python action
rgommers Jul 27, 2025
44464b2
CI: add cp314/cp314t wheel builds; improve cp313t builds
rgommers Jul 27, 2025
3f456b4
DOC: fix typo in a wavelet name (#812)
rgommers Jul 27, 2025
9011ae9
CI: add cp314/cp314t wheel builds; improve cp313t builds (#811)
rgommers Jul 27, 2025
6c84e23
DOC: update copyright end date in license file
rgommers Oct 26, 2024
2e16d28
BLD: require meson-python >=0.18.0 for PEP 639 support
rgommers Oct 26, 2024
546d6c0
MAINT: update license metadata to use PEP 639 style license and SPDX …
rgommers Oct 26, 2024
576a8f1
MAINT: minor tweak to build requirement for Python 3.14
rgommers Jul 27, 2025
6ddffce
Merge pull request #813 from rgommers/ci-cleanup
rgommers Jul 27, 2025
fefa805
Merge pull request #772 from rgommers/pep-639
rgommers Jul 29, 2025
a30ff33
Bump the github-actions group with 2 updates
dependabot[bot] Aug 1, 2025
e0dc00c
Merge pull request #814 from PyWavelets/dependabot/github_actions/git…
rgommers Aug 1, 2025
7f4f74a
DOC: `cwt`: log `scales` in docstring example (#802)
OverLordGoldDragon Aug 3, 2025
4122c7c
ENH: allow user to set `precision` in CWT, increase default to 12 (#570)
OverLordGoldDragon Aug 3, 2025
ee0e24b
CI: test Python 3.14 and 3.14t in regular CI jobs (#815)
rgommers Aug 3, 2025
20d2af4
Merge branch 'phandangthoai-optimal-scalogram' into 2-merge-main-into…
phandangthoai Aug 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
MAINT: require scipy_doctest>=1.8.0
See https://discuss.scientific-python.org/t/scipy-doctest-select-only-doctests-or-both-doctests-and-unit-tests/1950
for the rationale and the plan.

TL;DR: this is the only change needed to be forward-compatible with scipy_doctest>=1.8.0
  • Loading branch information
ev-br committed May 29, 2025
commit e2e4313f2ad75ec557a951bc9c4d8f5e63f40e9b
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ jobs:
python ../pywt/tests/test_doc.py
elif [ "${REFGUIDE_CHECK}" == "1" ]; then
# doctests docstrings
pytest --doctest-modules --pyargs pywt -v --doctest-collect=api
pytest --doctest-modules --pyargs pywt.data -v
pytest --doctest-modules --doctest-only-doctests=true --pyargs pywt -v --doctest-collect=api
pytest --doctest-modules --doctest-only-doctests=true --pyargs pywt.data -v
else
pytest --pyargs pywt
fi
Expand Down