Skip to content

Commit 8a3eea5

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

File tree

886 files changed

+2876
-2244
lines changed

Some content is hidden

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

886 files changed

+2876
-2244
lines changed

.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 <[email protected]> olafhauk <[email protected]>
240240
241241
Paul Pasler <[email protected]> ppasler <[email protected]>
242242
Paul Roujansky <[email protected]> Paul ROUJANSKY <[email protected]>
243+
Paul Roujansky <[email protected]> paulroujansky <[email protected]>
243244
Pedro Silva <[email protected]> pbnsilva <[email protected]>
244245
Phillip Alday <[email protected]> Phillip Alday <[email protected]>
245246
Phillip Alday <[email protected]> Phillip Alday <[email protected]>
@@ -254,6 +255,7 @@ Praveen Sripad <[email protected]> prav <[email protected]>
254255
255256
256257
Ramonapariciog Apariciogarcia <[email protected]> ramonapariciog <[email protected]>
258+
Rasmus Aagaard <[email protected]> roraa <[email protected]>
257259
258260
Reza Nasri <[email protected]> RezaNasri <[email protected]>
259261
Roan LaPlante <[email protected]> aestrivex <[email protected]>

.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)