Skip to content

Commit f95fe84

Browse files
authored
Merge branch 'master' into enh/nstdstate
2 parents e1ca942 + 0701c55 commit f95fe84

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

CHANGES

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
1-
Upcoming release 0.13
1+
Upcoming Release
22
=====================
33

44
* ENH: Added non-steady state detector for EPI data (https://github.com/nipy/nipype/pull/1839)
5+
* ENH: Enable new BBRegister init options for FSv6+ (https://github.com/nipy/nipype/pull/1811)
6+
* REF: Splits nipype.interfaces.utility into base, csv, and wrappers (https://github.com/nipy/nipype/pull/1828)
7+
* FIX: Makespec now runs with nipype in current directory (https://github.com/nipy/nipype/pull/1813)
8+
* FIX: Flexible nifti opening with mmap if Numpy < 1.12.0 (https://github.com/nipy/nipype/pull/1796 + https://github.com/nipy/nipype/pull/1831)
59
* ENH: DVARS includes intensity normalization feature - turned on by default (https://github.com/nipy/nipype/pull/1827)
610
* FIX: DVARS is correctly using sum of squares instead of standard deviation (https://github.com/nipy/nipype/pull/1827)
711
* ENH: Refactoring of nipype.interfaces.utility (https://github.com/nipy/nipype/pull/1828)
812
* FIX: CircleCI were failing silently. Some fixes to tests (https://github.com/nipy/nipype/pull/1833)
913
* FIX: Issues in Docker image permissions, and docker documentation (https://github.com/nipy/nipype/pull/1825)
1014
* ENH: Revised all Dockerfiles and automated deployment to Docker Hub
1115
from CircleCI (https://github.com/nipy/nipype/pull/1815)
16+
* ENH: Update ReconAll interface for FreeSurfer v6.0.0 (https://github.com/nipy/nipype/pull/1790)
17+
* FIX: Cast DVARS float outputs to avoid memmap error (https://github.com/nipy/nipype/pull/1777)
18+
* FIX: FSL FNIRT intensity mapping files (https://github.com/nipy/nipype/pull/1799)
19+
* ENH: Additional outputs generated by FSL EDDY (https://github.com/nipy/nipype/pull/1793)
20+
* TST: Parallelize CircleCI build across 4 containers (https://github.com/nipy/nipype/pull/1769)
21+
22+
23+
0.13.0-rc1 (January 4, 2017)
24+
===============================
25+
26+
* FIX: Compatibility with traits 4.6 (https://github.com/nipy/nipype/pull/1770)
27+
* FIX: Multiproc deadlock (https://github.com/nipy/nipype/pull/1756)
28+
* TST: Replace nose and unittest with pytest (https://github.com/nipy/nipype/pull/1722, https://github.com/nipy/nipype/pull/1751)
1229
* FIX: Semaphore capture using MultiProc plugin (https://github.com/nipy/nipype/pull/1689)
1330
* REF: Refactor AFNI interfaces (https://github.com/nipy/nipype/pull/1678, https://github.com/nipy/nipype/pull/1680)
1431
* ENH: Move nipype commands to group command using click (https://github.com/nipy/nipype/pull/1608)
@@ -37,7 +54,6 @@ Upcoming release 0.13
3754
* ENH: Added support for custom job submission check in SLURM (https://github.com/nipy/nipype/pull/1582)
3855
* ENH: Added ANTs interface CreateJacobianDeterminantImage; replaces deprecated JacobianDeterminant
3956
(https://github.com/nipy/nipype/pull/1654)
40-
* ENH: Update ReconAll interface for FreeSurfer v6.0.0 (https://github.com/nipy/nipype/pull/1790)
4157

4258
Release 0.12.1 (August 3, 2016)
4359
===============================

circle.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ dependencies:
2525
- mkdir -p $SCRATCH && sudo setfacl -d -m group:ubuntu:rwx $SCRATCH && sudo setfacl -m group:ubuntu:rwx $SCRATCH
2626
- mkdir -p $HOME/docker $HOME/examples $SCRATCH/pytest $SCRATCH/logs
2727
override:
28+
- if [[ -e $HOME/docker/cache.tar ]]; then docker load --input $HOME/docker/cache.tar; else echo 'No docker image found in cache'; fi :
29+
timeout: 6000
2830
- if [[ ! -d ~/examples/nipype-tutorial ]]; then wget --retry-connrefused --waitretry=5 --read-timeout=20 --timeout=15 -t 0 -q -O nipype-tutorial.tar.bz2 "${DATA_NIPYPE_TUTORIAL_URL}" && tar xjf nipype-tutorial.tar.bz2 -C ~/examples/; fi
2931
- if [[ ! -d ~/examples/nipype-fsl_course_data ]]; then wget --retry-connrefused --waitretry=5 --read-timeout=20 --timeout=15 -t 0 -q -O nipype-fsl_course_data.tar.gz "${DATA_NIPYPE_FSL_COURSE}" && tar xzf nipype-fsl_course_data.tar.gz -C ~/examples/; fi
3032
- if [[ ! -d ~/examples/feeds ]]; then wget --retry-connrefused --waitretry=5 --read-timeout=20 --timeout=15 -t 0 -q -O fsl-5.0.9-feeds.tar.gz "${DATA_NIPYPE_FSL_FEEDS}" && tar xzf fsl-5.0.9-feeds.tar.gz -C ~/examples/; fi
31-
- if [[ -e $HOME/docker/image.tar ]]; then docker load --input $HOME/docker/image.tar; else echo 'No docker image found in cache'; fi
3233
- docker images
3334
- sed -i -E "s/(__version__ = )'[A-Za-z0-9.-]+'/\1'$CIRCLE_TAG'/" nipype/info.py
3435
- e=1 && for i in {1..5}; do docker build -t nipype/nipype:latest --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` --build-arg VCS_REF=`git rev-parse --short HEAD` --build-arg VERSION=$CIRCLE_TAG . && e=0 && break || sleep 15; done && [ "$e" -eq "0" ] :
@@ -37,8 +38,8 @@ dependencies:
3738
timeout: 1600
3839
- e=1 && for i in {1..5}; do docker build -f docker/Dockerfile_py35 -t nipype/nipype_test:py35 . && e=0 && break || sleep 15; done && [ "$e" -eq "0" ] :
3940
timeout: 1600
40-
- docker save -o $HOME/docker/image.tar nipype/nipype:latest nipype/nipype_test:py27 nipype/nipype_test:py35 :
41-
timeout: 1600
41+
- docker save -o $HOME/docker/cache.tar nipype/nipype:latest nipype/nipype_test:py27 nipype/nipype_test:py35 :
42+
timeout: 6000
4243

4344
test:
4445
override:

0 commit comments

Comments
 (0)