-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from cpp-lln-lab/release_candidate_2.0
Release candidate 2.0
- Loading branch information
Showing
107 changed files
with
3,961 additions
and
1,262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Check Markdown | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: '*' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
fetch-depth: 1 | ||
|
||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '10' | ||
|
||
- name: Install dependencies and check markdown | ||
run: | | ||
npm install `cat npm-requirements.txt` | ||
npx remark README.md --frail | ||
npx remark ./notebooks/ --frail | ||
npx remark ./tests/ --frail | ||
npx remark ./docs/ --frail | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ on: | |
push: | ||
branches: | ||
- master | ||
- dev | ||
pull_request: | ||
branches: '*' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/source/conf.py | ||
builder: html | ||
fail_on_warning: true | ||
|
||
# Build documentation with MkDocs | ||
#mkdocs: | ||
# configuration: mkdocs.yml | ||
|
||
# Optionally build your docs in additional formats such as PDF | ||
formats: | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"title": "CPP_BIDS", | ||
"description": "A lightweight Octave/MATLAB toolbox to help create BIDS data sets from source.", | ||
"creators": [ | ||
{ | ||
"affiliation": "Université Catholique de Louvain", | ||
"name": "Gau, Rémi", | ||
"orcid": "0000-0002-1535-9767" | ||
}, | ||
{ | ||
"affiliation": "Université Catholique de Louvain", | ||
"name": "Barilari, Marco", | ||
"orcid": "0000-0002-3313-3120" | ||
}, | ||
{ | ||
"affiliation": "Université Catholique de Louvain", | ||
"name": "Battal, Ceren", | ||
"orcid": "0000-0002-9844-7630" | ||
}, | ||
{ | ||
"affiliation": "Université Catholique de Louvain", | ||
"name": "Lenc, Thomas", | ||
"orcid": "0000-0001-5796-1388" | ||
} | ||
], | ||
"keywords": [ | ||
"BIDS", | ||
"brain imaging data structure", | ||
"neuroscience", | ||
"MATLAB", | ||
"Octave" | ||
], | ||
"license": "MIT license", | ||
"upload_type": "software" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.