Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4f5cf32
Fix CircleCI [skip azp] [skip actions]
larsoner Jun 22, 2026
941a3c3
TST: Fine [circle full] [skip azp] [skip actions]
larsoner Jun 22, 2026
f4a1c3a
FIX: Try [skip azp] [skip actions]
larsoner Jun 23, 2026
2726cc7
FIX: Try again [skip azp] [skip actions]
larsoner Jun 23, 2026
56c85cb
FIX: Try again [skip azp] [skip actions]
larsoner Jun 23, 2026
69b34a3
FIX: Try again [skip azp] [skip actions]
larsoner Jun 23, 2026
5b0d0f4
FIX: Try again [skip azp] [skip actions]
larsoner Jun 23, 2026
3450a9d
FIX: Try again [skip azp] [skip actions] [circle front]
larsoner Jun 23, 2026
e45602d
FIX: Try again [skip azp] [skip actions] [circle front]
larsoner Jun 23, 2026
cbb0d7e
FIX: Try again [skip azp] [skip actions] [circle front]
larsoner Jun 23, 2026
337232a
FIX: Try again [skip azp] [skip actions] [circle front]
larsoner Jun 23, 2026
d29f704
FIX: Try again [skip azp] [skip actions] [circle front]
larsoner Jun 23, 2026
5a62c5e
FIX: Try again [skip azp] [skip actions] [circle front]
larsoner Jun 23, 2026
41a6503
TST: All [circle full] [circle linkcheck]
larsoner Jun 23, 2026
1a467ac
FIX: Maybe [circle linkcheck] [skip azp] [skip actions]
larsoner Jun 23, 2026
1d7298c
FIX: Maybe [circle linkcheck] [skip azp] [skip actions]
larsoner Jun 23, 2026
e6c2bf2
FIX: Maybe [circle linkcheck] [skip azp] [skip actions]
larsoner Jun 23, 2026
6d85739
FIX: Maybe [circle linkcheck] [skip azp] [skip actions]
larsoner Jun 23, 2026
d7ad73a
TST: Ping [circle linkcheck]
larsoner Jun 23, 2026
019a983
FIX: Link
larsoner Jun 23, 2026
6fe71e9
FIX: Depth
larsoner Jun 23, 2026
6c1356d
FIX: Upgrade
larsoner Jun 23, 2026
482ed96
FIX: Dont use git
larsoner Jun 23, 2026
05ac8e7
FIX: Dont need
larsoner Jun 23, 2026
d13ac32
Update .github/workflows/release.yml
larsoner Jun 23, 2026
15a9946
Merge branch 'main' into doc
larsoner Jun 23, 2026
94fbde3
FIX: Dont use
larsoner Jun 23, 2026
fddc7e8
FIX: Dont pin
larsoner Jun 23, 2026
b42b1a6
classname
drammock Jun 23, 2026
9c50ccb
missed one
drammock Jun 23, 2026
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
21 changes: 13 additions & 8 deletions doc/sphinxext/mne_doc_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.

import functools
import gc
import os
import time
Expand All @@ -17,9 +18,7 @@

import mne
from mne.utils import (
_assert_no_instances as _assert_no_instances_mne,
)
from mne.utils import (
_assert_no_instances,
_get_extra_data_path,
sizeof_fmt,
)
Expand Down Expand Up @@ -123,14 +122,20 @@ def reset_warnings(gallery_conf, fname):
t0 = time.time()


def _assert_no_instances(cls, when):
def _reraise_extension_error(func):
"""Wrap our internal one but make the traceback nicer when it fails."""
try:
_assert_no_instances_mne(cls, when)
except Exception as exc:
raise ExtensionError(str(exc)) from None

@functools.wraps(func)
def _wrapper(gallery_conf, fname, when):
try:
return func(gallery_conf, fname, when)
except Exception:
raise ExtensionError(f"{func.__name__} failed: {when=}, {fname=}")

return _wrapper


@_reraise_extension_error
def reset_modules(gallery_conf, fname, when):
"""Do the reset."""
import matplotlib.pyplot as plt
Expand Down
9 changes: 0 additions & 9 deletions tutorials/epochs/60_make_fixed_length_epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@
epochs by segmenting the data around the onset of each stimulus, we will
create 30 second epochs that allow us to perform non-event-related analyses of
the signal.

.. note::
Starting in version 1.0, all functions in the ``mne.connectivity``
Comment thread
larsoner marked this conversation as resolved.
sub-module are housed in a separate package called
:mod:`mne-connectivity <mne_connectivity>`. Download it by running:

.. code-block:: console

$ pip install mne-connectivity
"""

# Authors: The MNE-Python contributors.
Expand Down
5 changes: 2 additions & 3 deletions tutorials/evoked/10_evoked_overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@
# :class:`~mne.Epochs` object, but may also be initiated (or disabled)
# manually. We will discuss this in more detail later.
#
# The information about the baseline period of :class:`~mne.Epochs` is
# transferred to derived :class:`~mne.Evoked` objects to maintain provenance as
# you process your data:
# The information about the baseline period of :class:`~mne.Epochs` is transferred to
# derived :class:`~mne.Evoked` objects to maintain provenance as you process your data:

print(f"Epochs baseline: {epochs.baseline}")
print(f"Evoked baseline: {evoked.baseline}")
Expand Down