Skip to content

Commit 5718131

Browse files
committed
Merge branch 'develop' of https://github.com/FCP-INDI/C-PAC into develop
2 parents 7b2013d + 2b48241 commit 5718131

Some content is hidden

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

43 files changed

+266
-232
lines changed

.circleci/config.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,17 @@ jobs:
141141
VERSION=$(python -c "from info import __version__; print(__version__)")
142142
cd ..
143143
if ! [[ $CIRCLE_BRANCH = 'master' ]]
144-
then if [[ $CIRCLE_BRANCH = 'develop' || ${CIRCLE_BRANCH:0:7} = 'hotfix/' ]]
145-
then REBASE_BASE_BRANCH=master
146-
else REBASE_BASE_BRANCH=develop
147-
fi
148-
GIT_SEQUENCE_EDITOR=dev/circleci_data/drop_version_bump_commits git rebase -X ours -i origin/$REBASE_BASE_BRANCH --empty drop
144+
then
145+
git fetch --all
146+
if [[ -n ${CIRCLE_PR_NUMBER} && -n ${GITHUB_PR_BASE_TOKEN} ]]
147+
then
148+
curl -L "https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64" -o jq
149+
chmod +x jq
150+
REBASE_BASE=origin/$(curl -u shnizzedy:$GITHUB_PR_BASE_TOKEN "https://api.github.com/repos/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME/pulls/$CIRCLE_PR_NUMBER" | jq '.base.ref' | tr -d '"')
151+
else
152+
REBASE_BASE=$(git rev-parse --short HEAD~30)
153+
fi
154+
GIT_SEQUENCE_EDITOR=dev/circleci_data/drop_version_bump_commits git rebase -X ours -i $REBASE_BASE --empty drop
149155
fi
150156
echo "v${VERSION}" > version
151157
sed -i -r "s/^(# [Vv]ersion ).*$/# Version ${VERSION}/g" dev/docker_data/default_pipeline.yml

CPAC/func_preproc/func_preproc.py

Lines changed: 207 additions & 185 deletions
Large diffs are not rendered by default.

CPAC/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# version
1111
_version_major = 1
1212
_version_minor = 7
13-
_version_micro = 0
13+
_version_micro = 1
1414
_version_extra = ''
1515

1616

CPAC/resources/configs/data_config_S3-BIDS-ABIDE.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Data Configuration File
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

CPAC/resources/configs/data_config_S3-BIDS-ADHD200.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Data Configuration File
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

CPAC/resources/configs/data_config_S3-BIDS-ADHD200_only2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Data Configuration File
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

CPAC/resources/configs/data_config_S3-BIDS-NKI-RocklandSample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Data Configuration File
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

CPAC/resources/configs/data_config_cpac_benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Data Configuration File
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

CPAC/resources/configs/data_settings_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Data Settings File
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

CPAC/resources/configs/group_config_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CPAC Group-Level Analysis Configuration YAML file
2-
# Version 1.7.0
2+
# Version 1.7.1
33
#
44
# http://fcp-indi.github.io for more info.
55
#

0 commit comments

Comments
 (0)