Skip to content

Commit 0d547dd

Browse files
committed
Merge remote-tracking branch 'upstream/main' into dev-report-src
2 parents 0f556f7 + 8ea69e1 commit 0d547dd

70 files changed

Lines changed: 1023 additions & 311 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/circle_artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55
jobs:
66
circleci_artifacts_redirector_job:
77
if: "${{ startsWith(github.event.context, 'ci/circleci: build_docs') }}"
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99
name: Run CircleCI artifacts redirector
1010
steps:
1111
- name: GitHub Action step

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- os: ubuntu-latest
8080
python: '3.10'
8181
kind: minimal
82-
- os: ubuntu-20.04
82+
- os: ubuntu-22.04
8383
python: '3.10'
8484
kind: old
8585
steps:

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22
# Ruff mne
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.9.10
4+
rev: v0.11.4
55
hooks:
66
- id: ruff
77
name: ruff lint mne
@@ -33,7 +33,7 @@ repos:
3333

3434
# yamllint
3535
- repo: https://github.com/adrienverge/yamllint.git
36-
rev: v1.35.1
36+
rev: v1.37.0
3737
hooks:
3838
- id: yamllint
3939
args: [--strict, -c, .yamllint.yml]
@@ -82,7 +82,7 @@ repos:
8282

8383
# zizmor
8484
- repo: https://github.com/woodruffw/zizmor-pre-commit
85-
rev: v1.4.1
85+
rev: v1.5.2
8686
hooks:
8787
- id: zizmor
8888

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ stages:
113113
- bash: |
114114
set -e
115115
python -m pip install --progress-bar off --upgrade pip
116-
python -m pip install --progress-bar off "mne-qt-browser[opengl] @ git+https://github.com/mne-tools/mne-qt-browser.git@main" pyvista scikit-learn python-picard qtpy nibabel sphinx-gallery "PySide6!=6.8.0,!=6.8.0.1,!=6.8.1.1" pandas neo pymatreader antio defusedxml
116+
python -m pip install --progress-bar off "mne-qt-browser[opengl] @ git+https://github.com/mne-tools/mne-qt-browser.git" pyvista scikit-learn python-picard qtpy nibabel sphinx-gallery "PySide6!=6.8.0,!=6.8.0.1,!=6.8.1.1" pandas neo pymatreader antio defusedxml
117117
python -m pip uninstall -yq mne
118118
python -m pip install --progress-bar off --upgrade -e .[test]
119119
displayName: 'Install dependencies with pip'

doc/_includes/institutional-partners.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Current partners
1919
- `Children’s Hospital of Philadelphia Research Institute <https://www.research.chop.edu/imaging/>`_
2020
- `Donders Institute for Brain, Cognition and Behaviour at Radboud University <https://www.ru.nl/donders/>`_
2121
- `Harvard Medical School <https://hms.harvard.edu/>`_
22-
- `Fondation Campus Biotech Geneva <https://fcbg.ch/>`_
2322
- `Institut national de recherche en informatique et en automatique <https://www.inria.fr/>`_
2423
- `Karl-Franzens-Universität Graz <https://www.uni-graz.at/>`_
2524
- `Massachusetts General Hospital <https://www.massgeneral.org/>`_
@@ -34,6 +33,7 @@ Former partners
3433
- `Berkeley Institute for Data Science <https://bids.berkeley.edu/>`_
3534
- `Boston University <https://www.bu.edu/>`_
3635
- `Commissariat à l’énergie atomique et aux énergies alternatives <https://www.cea.fr/>`_
36+
- `Fondation Campus Biotech Geneva <https://fcbg.ch/>`_
3737
- `Forschungszentrum Jülich <https://www.fz-juelich.de/>`_
3838
- `Institut du Cerveau et de la Moelle épinière <https://icm-institute.org/>`_
3939
- `Institut national de la santé et de la recherche médicale <https://www.inserm.fr/>`_

doc/changes/devel/13172.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix bug in :func:`mne.bem.make_watershed_bem` where function would fail if ``talairach_with_skull.lta`` did not exist due to changes in Freesurfer by `Peter Molfese`_.

doc/changes/devel/13174.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix bug where :func:`mne.export.export_raw` might allocate huge intermediate arrays unnecessarily, when padding data blocks during export to EDF format, by `Daniel McCloy`_.

doc/changes/devel/13178.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix bug with least-squares fitting of head origin using digitization points in :func:`mne.preprocessing.maxwell_filter`, by `Eric Larson`_.

doc/changes/devel/13179.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix bug with :func:`mne.viz.plot_alignment` where ``eeg="projected"`` was not plotted, by `Eric Larson`_.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add ``upsampling`` option to :func:`mne.make_field_map` to allow upsampling MEG helmet surfaces for plotting, by `Eric Larson`_.

0 commit comments

Comments
 (0)