Skip to content

Commit afb5167

Browse files
committed
[REL] 0.3.1
1 parent 330e324 commit afb5167

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

docs/whats_new.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ People who contributed to this software across releases (in alphabetical order)
3030
Current
3131
-------
3232

33+
Changelog
34+
~~~~~~~~~
35+
- Nothing yet
36+
37+
.. _changes_0_3_1:
38+
39+
Version 0.3.1
40+
-------------
41+
3342
Changelog
3443
~~~~~~~~~
3544
- It's now possible to pass keyword arguments to the notch filter inside prep; see the ``filter_kwargs`` parameter by `Yorguin Mantilla`_ (`#40 <https://github.com/sappelhoff/pyprep/pull/40>`_)

tests/test_find_noisy_channels.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ def test_findnoisychannels(raw, montage):
1919
10 # remove any noisy channels by interpolating the bads for 10 iterations
2020
)
2121
for iter in range(0, iterations):
22+
if len(bads) == 0:
23+
continue
2224
raw.info["bads"] = bads
2325
raw.interpolate_bads()
2426
nd = NoisyChannels(raw, random_state=rng)

0 commit comments

Comments
 (0)