Skip to content

Commit c9e34f1

Browse files
authored
Fix bug with credit [circle deploy] (#13841)
1 parent ac2c2cf commit c9e34f1

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

doc/sphinxext/credit_tools.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,9 @@ def generate_credit_rst(app=None, *, verbose=False):
315315
logo/LICENSE doc/credit.rst
316316
""".strip().split():
317317
globs[key] = "null"
318+
# A few remaps
319+
globs["mne/io/edf/_open.py"] = "mne.io"
320+
globs["mne/_edf/open.py"] = "mne.io"
318321
# Now onto the actual module organization
319322
root_path = pathlib.Path(mne.__file__).parent
320323
mod_file_map = dict()
@@ -345,8 +348,6 @@ def generate_credit_rst(app=None, *, verbose=False):
345348
globs["bin/*"] = "mne.commands"
346349
globs["mne/morph_map.py"] = "mne.surface"
347350
globs["mne/baseline.py"] = "mne.epochs"
348-
globs["mne/io/edf/_open.py"] = "mne.io"
349-
globs["mne/_edf/open.py"] = "mne.io"
350351
for key in """
351352
parallel.py rank.py misc.py data/*.* defaults.py fixes.py icons/*.* icons.*
352353
""".strip().split():

tools/circleci_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python -m pip install --upgrade --progress-bar off $ONLY_BINARY \
1313
-r doc/sphinxext/related_software.txt \
1414
"git+https://github.com/mne-tools/mne-bids.git" \
1515
"git+https://github.com/mne-tools/mne-qt-browser.git" \
16-
"git+https://github.com/pyvista/pyvista.git" \
16+
"git+https://github.com/larsoner/pyvista.git@weakref" \
1717
"git+https://github.com/sphinx-gallery/sphinx-gallery.git"
1818
python -m pip install --upgrade --progress-bar off --no-deps $ONLY_BINARY \
1919
-r doc/sphinxext/related_software_nodeps.txt

tutorials/io/30_reading_fnirs_data.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
frequency domain fNIRS).
2525
2626
.. warning:: MNE-Python stores metadata internally with a specific structure,
27-
and internal functions expect specific naming conventions.
28-
Manual modification of channel names and metadata
29-
is not recommended.
27+
and internal functions expect specific naming conventions. Manual
28+
modification of channel names and metadata is not recommended.
3029
3130
.. _import-snirf:
3231

0 commit comments

Comments
 (0)