Skip to content

Commit ed8e5bf

Browse files
Merge branch 'bids-standard:master' into dev
2 parents 88bcf87 + a64e100 commit ed8e5bf

Some content is hidden

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

58 files changed

+3298
-1150
lines changed

.all-contributorsrc

Lines changed: 656 additions & 196 deletions
Large diffs are not rendered by default.

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
uvx linkchecker -t 1 --check-extern \
3939
--ignore-url 'file:///.*' \
4040
--ignore-url 'https://bids-specification.readthedocs.io/en/stable/.*' \
41+
--ignore-url "https://bids-specification.readthedocs.io/en/v${CIRCLE_BRANCH#rel/}/" \
4142
--ignore-url 'https://doi.org/.*' \
4243
--ignore-url 'https://fonts.gstatic.com' \
4344
--ignore-url 'https://github.com/[^/]*' \

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
# 2025-08-27 00:06:56 -0400 - [email protected] - sty: ruff format [ignore-rev]
2+
14d99ce796bd40ea97d1c11fa25d31e710b51030
13
# 2022-08-19 12:59:40 -0400 - [email protected] - [git-blame-ignore-rev] prettified schema files.
24
aaccb5ffc10e7f9460bbe9eb8c246872de167543

.github/workflows/changelog_generator.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
github_changelog_generator:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
@@ -62,9 +62,9 @@ jobs:
6262
needs: github_changelog_generator
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
- name: Download previously build changelog
67-
uses: actions/download-artifact@v4
67+
uses: actions/download-artifact@v5
6868
with:
6969
name: changelog_pre_lint
7070
path: ~/changelog_build
@@ -108,9 +108,9 @@ jobs:
108108
if: contains(github.event.head_commit.message, '[build changelog]')
109109
runs-on: ubuntu-latest
110110
steps:
111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v5
112112
- name: Download previously build changelog
113-
uses: actions/download-artifact@v4
113+
uses: actions/download-artifact@v5
114114
with:
115115
name: changelog_post_lint
116116
path: ~/changelog_build

.github/workflows/publish_schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
publish:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434
filter: "blob:none"

.github/workflows/schemacode_ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
attestations: write
3030
id-token: write
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 0
3535
- name: Install the latest version of uv
@@ -62,7 +62,7 @@ jobs:
6262
python-version: 3.13
6363
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666

6767
- name: Set up Python ${{ matrix.python-version }} (uv)
6868
uses: astral-sh/setup-uv@v6
@@ -74,7 +74,7 @@ jobs:
7474
run: python -c "import sys; print(sys.version)"
7575

7676
- name: "Fetch packages"
77-
uses: actions/download-artifact@v4
77+
uses: actions/download-artifact@v5
7878
with:
7979
name: Packages
8080
path: dist
@@ -112,7 +112,7 @@ jobs:
112112

113113
steps:
114114
- name: Download packages built by build-and-inspect-python-package
115-
uses: actions/download-artifact@v4
115+
uses: actions/download-artifact@v5
116116
with:
117117
name: Packages
118118
path: dist
@@ -131,7 +131,7 @@ jobs:
131131
runs-on: ubuntu-latest
132132
name: Validate schema
133133
steps:
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v5
135135

136136
- name: Set Up Python environment
137137
uses: actions/setup-python@v5
@@ -162,10 +162,10 @@ jobs:
162162
needs: [test, validate_schema]
163163
steps:
164164
- name: Checkout
165-
uses: actions/checkout@v4
165+
uses: actions/checkout@v5
166166

167167
- name: Download artifacts
168-
uses: actions/download-artifact@v4
168+
uses: actions/download-artifact@v5
169169

170170
- name: Upload to CodeCov
171171
uses: codecov/codecov-action@v5

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Install dependencies
2222
run: |
2323
sudo apt update && sudo apt install -y shellcheck

.github/workflows/validation.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
codespell:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- uses: codespell-project/actions-codespell@master
2121

2222
# Markdown formatting
2323
remark:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- uses: actions/setup-node@v4
2828
with:
2929
node-version: 22
@@ -36,7 +36,7 @@ jobs:
3636
yamllint:
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- uses: astral-sh/setup-uv@v6
4141
- name: Lint yml files in src/schema
4242
run: uvx yamllint -f standard src/schema/ -c .yamllint.yml
@@ -45,7 +45,7 @@ jobs:
4545
python-style:
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- uses: astral-sh/setup-uv@v6
5050
- run: uvx ruff format --diff
5151
- run: uvx ruff check
@@ -54,7 +54,7 @@ jobs:
5454
latin-phrases:
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
- uses: astral-sh/setup-uv@v6
5959
- name: Check for Latin phrases
6060
run: uv run tools/no-bad-latin.py
@@ -63,7 +63,9 @@ jobs:
6363
validate_cff:
6464
runs-on: ubuntu-latest
6565
steps:
66-
- uses: actions/checkout@v4
66+
- uses: actions/checkout@v5
6767
- uses: astral-sh/setup-uv@v6
6868
- name: Validate CITATION.cff
6969
run: uvx cffconvert --validate
70+
- name: Check for Zenodo compatibility
71+
run: uv run tools/validate_citation.py

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ site/
66
venvs
77
.vscode/
88

9+
.~lock*
10+
911
pdf_build_src/bids-spec.pdf
1012
pdf_build_src/bids-spec_pandoc_log.json
1113
pdf_build_src/src_copy

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Remi Gau <[email protected]> <[email protected]>
2525
Horea Christian <[email protected]>
2626
2727

28+
Yaroslav O. Halchenko <[email protected]>
29+
2830
Franco Pestilli <[email protected]>
2931
3032

0 commit comments

Comments
 (0)