Skip to content

Commit 8a3eea5

Browse files
committed
resolve merge conflict - forgot to pull before adding to changelog
2 parents cbd7083 + f742c1e commit 8a3eea5

886 files changed

Lines changed: 2876 additions & 2244 deletions

File tree

Some content is hidden

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

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,14 @@ jobs:
296296
# Build docs
297297
- run:
298298
name: make html
299+
command: | # we have -o pipefail in #BASH_ENV so we should be okay
300+
set -x
301+
PATTERN=$(cat pattern.txt) make -C doc $(cat build.txt) 2>&1 | tee sphinx_log.txt
302+
- run:
303+
name: Check sphinx log for warnings (which are treated as errors)
304+
when: always
299305
command: |
300-
PATTERN=$(cat pattern.txt) make -C doc $(cat build.txt);
306+
! grep "^.* WARNING: .*$" sphinx_log.txt
301307
- run:
302308
name: Show profiling output
303309
when: always

.git_archival.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node: $Format:%H$
2+
node-date: $Format:%cI$
3+
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
4+
ref-names: $Format:%D$

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.git_archival.txt export-subst

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,16 @@ jobs:
6363
python: '3.11'
6464
kind: pip-pre
6565
- os: macos-latest
66-
python: '3.8'
66+
python: '3.9'
6767
kind: mamba
6868
- os: windows-latest
6969
python: '3.10'
7070
kind: mamba
7171
- os: ubuntu-latest
72-
python: '3.8'
72+
python: '3.9'
7373
kind: minimal
7474
- os: ubuntu-20.04
75-
python: '3.8'
75+
python: '3.9'
7676
kind: old
7777
steps:
7878
- uses: actions/checkout@v4
@@ -90,7 +90,7 @@ jobs:
9090
python-version: ${{ matrix.python }}
9191
if: startswith(matrix.kind, 'pip')
9292
# Python (if conda)
93-
- uses: conda-incubator/setup-miniconda@v2
93+
- uses: conda-incubator/setup-miniconda@v3
9494
with:
9595
python-version: ${{ env.PYTHON_VERSION }}
9696
environment-file: ${{ env.CONDA_ENV }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ doc/*.dat
7171
doc/fil-result
7272
doc/optipng.exe
7373
sg_execution_times.rst
74+
sg_api_usage.rst
75+
sg_api_unused.dot
7476
cover
7577
*.html
7678

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ Olaf Hauk <olaf.hauk@mrc-cbu.cam.ac.uk> olafhauk <olaf.hauk@mrc-cbu.cam.ac.uk>
240240
Omer Shubi <omer.shubi@gmail.com> Omer S <omer.shubi@gmail.com>
241241
Paul Pasler <paul@ppasler.de> ppasler <paul@ppasler.de>
242242
Paul Roujansky <paul@roujansky.eu> Paul ROUJANSKY <paul.roujansky@bioserenity.com>
243+
Paul Roujansky <paul@roujansky.eu> paulroujansky <paul@roujansky.eu>
243244
Pedro Silva <pedrobnsilva@gmail.com> pbnsilva <pedrobnsilva@gmail.com>
244245
Phillip Alday <phillip.alday@mpi.nl> Phillip Alday <palday@users.noreply.github.com>
245246
Phillip Alday <phillip.alday@mpi.nl> Phillip Alday <phillip.alday@unisa.edu.au>
@@ -254,6 +255,7 @@ Praveen Sripad <pravsripad@gmail.com> prav <pravsripad@gmail.com>
254255
Proloy Das <pdas6@mgh.harvard.edu> pdas6 <pdas6@mgh.harvard.edu>
255256
Ram Pari <ramsbam@gmail.com> Ram <ramsbam@gmail.com>
256257
Ramonapariciog Apariciogarcia <moncho_apa@hotmail.com> ramonapariciog <moncho_apa@hotmail.com>
258+
Rasmus Aagaard <roraa@dtu.dk> roraa <roraa@dtu.dk>
257259
Reza Nasri <reza@ddpo.ir> Reza <qablameh13@gmail.com>
258260
Reza Nasri <reza@ddpo.ir> RezaNasri <rezanasri@outlook.com>
259261
Roan LaPlante <aestrivex@gmail.com> aestrivex <aestrivex@gmail.com>

.pre-commit-config.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77

88
# Ruff mne
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: v0.1.5
10+
rev: v0.1.6
1111
hooks:
1212
- id: ruff
1313
name: ruff mne
@@ -16,7 +16,7 @@ repos:
1616

1717
# Ruff tutorials and examples
1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: v0.1.5
19+
rev: v0.1.6
2020
hooks:
2121
- id: ruff
2222
name: ruff tutorials and examples
@@ -50,3 +50,6 @@ repos:
5050
additional_dependencies:
5151
- tomli
5252
files: ^doc/.*\.(rst|inc)$
53+
54+
ci:
55+
autofix_prs: false

0 commit comments

Comments
 (0)