Skip to content

Commit 83ba916

Browse files
committed
Merge branch 'fix_extra_column' of https://github.com/Remi-Gau/CPP_BIDS into fix_extra_column
2 parents 28f7041 + 8457652 commit 83ba916

24 files changed

+79
-96
lines changed

.github/workflows/bids_validator.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Make jsonread for octave
2424
run: |
2525
sudo apt-get -y -qq update
26-
sudo apt-get -y install octave
26+
sudo apt-get -y install octave
2727
sudo apt-get -y install liboctave-dev
2828
cd lib/JSONio
2929
mkoctfile --mex jsonread.c jsmn.c -DJSMN_PARENT_LINKS
@@ -32,18 +32,13 @@ jobs:
3232
- name: Update octave path
3333
run: |
3434
octave $OCTFLAGS --eval "addpath(genpath(fullfile(pwd, 'lib'))); savepath();"
35-
octave $OCTFLAGS --eval "addpath(genpath(fullfile(pwd, 'src'))); savepath();"
35+
octave $OCTFLAGS --eval "addpath(genpath(fullfile(pwd, 'src'))); savepath();"
3636
3737
- name: Install BIDS validator
3838
run: |
3939
sudo npm install -g [email protected]
4040
41-
- name: Create dummy dataset and validate it
41+
- name: Create dummy dataset and validate it
4242
run: |
4343
cd tests/manualTests
4444
octave $OCTFLAGS --eval "test_makeRawDataset" && bids-validator `pwd`/output/raw/ --ignoreNiftiHeaders
45-
46-
47-
48-
49-

.github/workflows/check_markdown.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ jobs:
2626
- name: Install dependencies and check markdown
2727
run: |
2828
npm install `cat npm-requirements.txt`
29-
npx remark README.md --frail
29+
npx remark README.md --frail
3030
npx remark ./notebooks/ --frail
3131
npx remark ./tests/ --frail
3232
npx remark ./docs/ --frail
33-
34-

.github/workflows/check_md_links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@master
17-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
17+
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Make jsonread for octave
2222
run: |
2323
sudo apt-get -y -qq update
24-
sudo apt-get -y install octave
24+
sudo apt-get -y install octave
2525
sudo apt-get -y install liboctave-dev
2626
cd lib/JSONio
2727
mkoctfile --mex jsonread.c jsmn.c -DJSMN_PARENT_LINKS
@@ -30,7 +30,7 @@ jobs:
3030
uses: joergbrech/moxunit-action@master
3131
with:
3232
tests: tests # files or directories containing the MOxUnit test cases
33-
src: src # directories to be added to the Octave search path before running the tests.
33+
src: src # directories to be added to the Octave search path before running the tests.
3434
ext: tests/utils # External resources to add to the search put (excluded from coverage)
3535
# data: # Directory for test data
3636
with_coverage: true

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ formats:
2323
python:
2424
version: 3.7
2525
install:
26-
- requirements: requirements.txt
26+
- requirements: requirements.txt

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ node_js:
1111
- "11"
1212

1313
branches:
14-
only: # only run the CI for those branches
14+
only: # only run the CI for those branches
1515
- master
1616
- dev
1717

.zenodo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
],
3333
"license": "MIT license",
3434
"upload_type": "software"
35-
}
35+
}

binder/postBuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
cd ${HOME}
22
cd lib/JSONio; mkoctfile --mex jsonread.c jsmn.c -DJSMN_PARENT_LINKS; cd ..
3-

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3232
# ones.
3333
extensions = [
34-
'sphinxcontrib.matlab',
34+
'sphinxcontrib.matlab',
3535
'sphinx.ext.autodoc']
3636
matlab_src_dir = os.path.dirname(os.path.abspath('../../src'))
3737
primary_domain = 'mat'
@@ -88,4 +88,4 @@
8888
'searchbox.html',
8989
'donate.html',
9090
]
91-
}
91+
}

docs/source/contributing.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Template proposal
4848

4949
end
5050

51-
.. autofunction:: templateFunction
51+
.. autofunction:: templateFunction
5252

5353

5454
Example code in the help section
@@ -100,6 +100,3 @@ Example code in the help section
100100
end
101101

102102
.. autofunction:: templateFunctionExample
103-
104-
105-

0 commit comments

Comments
 (0)