Skip to content

Commit dcfbadc

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 05e5173 + 2649ee0 commit dcfbadc

6 files changed

Lines changed: 22 additions & 24 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
---
2-
# Documentation
3-
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
41
version: 2
52
updates:
63
- package-ecosystem: github-actions
74
directory: /
85
schedule:
9-
interval: monthly
6+
interval: semiannually

.github/workflows/publishdocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout master
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Deploy docs
1717
uses: mhausenblas/mkdocs-deploy-gh-pages@master

.github/workflows/validation.yml

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

2222
markdown-link-check:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.pre-commit-config.yaml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
# See https://pre-commit.com for more information
2-
# See https://pre-commit.com/hooks.html for more hooks
31
repos:
4-
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.6.0
6-
hooks:
7-
- id: trailing-whitespace
8-
- id: check-yaml
9-
- id: check-added-large-files
10-
- id: end-of-file-fixer
11-
12-
- repo: https://github.com/psf/black
13-
rev: 24.8.0
14-
hooks:
15-
- id: black
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v6.0.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: check-yaml
7+
- id: check-added-large-files
8+
- id: end-of-file-fixer
9+
- repo: https://github.com/psf/black
10+
rev: 26.3.0
11+
hooks:
12+
- id: black
13+
ci:
14+
autoupdate_commit_msg: 'chore: update pre-commit hooks'
15+
autoupdate_schedule: quarterly
16+
autofix_commit_msg: 'style: pre-commit fixes'

src/datasets_raw.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
| 2023_Liege_BLAM_MB_raw | 14 | ['anat', 'func'] | ['01', '02', '03', '04'] | ['BimodalMotionAud', 'BimodalMotionVis', 'audioV1', 'auditoryLocalizer', 'bimodalMotionAud', 'bimodalMotionVis', 'mtMstLocalizer', 'rdkBimodalMotion', 'restingState', 'visualLocalizer'] | https://gin.g-node.org/cpp-lln-lab/2023_Liege_BLAM_MB_raw | n/a | n/a | n/a |
2323
| 2023_SaintLuc_VisTacMotionFoR_IS_raw | 21 | ['anat', 'func'] | ['001', '002'] | ['handDown', 'handUp', 'mtMstLocalizer', 'tactileLocalizer2', 'visual', 'visualLocalizer2'] | https://gin.g-node.org/cpp-lln-lab/2023_SaintLuc_VisTacMotionFoR_IS_raw | n/a | n/a | n/a |
2424
| 2023_Trento_plosBiology_YX_raw | 48 | ['anat', 'fmap', 'func'] | [] | ['judgement', 'resting'] | https://gin.g-node.org/cpp-lln-lab/2023_Trento_plosBiology_YX_raw | n/a | n/a | n/a |
25-
| Toronto_VisMotionLocalizer_MR_raw | 3 | ['anat', 'func'] | ['01'] | ['visMotion'] | https://gin.g-node.org/cpp-lln-lab/Toronto_VisMotionLocalizer_MR_raw | n/a | n/a | n/a |
25+
| Toronto_VisMotionLocalizer_MR_raw | 3 | ['anat', 'func'] | ['01'] | ['visMotion'] | https://gin.g-node.org/cpp-lln-lab/Toronto_VisMotionLocalizer_MR_raw | n/a | n/a | n/a |

tools/utils.py

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

88

99
def new_dataset(name: str) -> dict[str, str | int | bool | list[str]]:
10-
10+
1111
URL_GIN = "https://gin.g-node.org/cpp-lln-lab/"
12-
12+
1313
return {
1414
"name": name,
1515
"nb_subjects": "n/a",

0 commit comments

Comments
 (0)