Skip to content

Commit b8a8c3a

Browse files
authored
Merge pull request #2658 from nipy/rel/1.1.1
REL: 1.1.1
2 parents 715ad0a + 73a2e1b commit b8a8c3a

File tree

9 files changed

+48
-26
lines changed

9 files changed

+48
-26
lines changed

.zenodo.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@
3030
"name": "Notter, Michael Philipp",
3131
"orcid": "0000-0002-5866-047X"
3232
},
33-
{
34-
"affiliation": "MIT",
35-
"name": "Jarecka, Dorota",
36-
"orcid": "0000-0003-1857-8129"
37-
},
3833
{
3934
"affiliation": "University of Iowa",
4035
"name": "Johnson, Hans",
4136
"orcid": "0000-0001-9513-2660"
4237
},
38+
{
39+
"affiliation": "MIT",
40+
"name": "Jarecka, Dorota",
41+
"orcid": "0000-0003-1857-8129"
42+
},
4343
{
4444
"name": "Burns, Christopher"
4545
},
@@ -60,16 +60,16 @@
6060
"name": "Salo, Taylor",
6161
"orcid": "0000-0001-9813-3167"
6262
},
63-
{
64-
"affiliation": "University of California, San Francisco",
65-
"name": "Jordan, Kesshi",
66-
"orcid": "0000-0001-6313-0580"
67-
},
6863
{
6964
"affiliation": "MIT",
7065
"name": "Goncalves, Mathias",
7166
"orcid": "0000-0002-7252-7771"
7267
},
68+
{
69+
"affiliation": "University of California, San Francisco",
70+
"name": "Jordan, Kesshi",
71+
"orcid": "0000-0001-6313-0580"
72+
},
7373
{
7474
"affiliation": "Department of Psychology, Stanford University",
7575
"name": "Waskom, Michael"
@@ -151,6 +151,11 @@
151151
"name": "Cipollini, Ben",
152152
"orcid": "0000-0002-7782-0790"
153153
},
154+
{
155+
"affiliation": "Dartmouth College: Hanover, NH, United States",
156+
"name": "Halchenko, Yaroslav O.",
157+
"orcid": "0000-0003-3456-2493"
158+
},
154159
{
155160
"affiliation": "Montreal Neurological Institute and Hospital",
156161
"name": "Markello, Ross",
@@ -164,11 +169,6 @@
164169
{
165170
"name": "Moloney, Brendan"
166171
},
167-
{
168-
"affiliation": "Dartmouth College: Hanover, NH, United States",
169-
"name": "Halchenko, Yaroslav O.",
170-
"orcid": "0000-0003-3456-2493"
171-
},
172172
{
173173
"affiliation": "Athena EPI, Inria Sophia-Antipolis",
174174
"name": "Wassermann , Demian",
@@ -325,9 +325,6 @@
325325
{
326326
"name": "Millman, Jarrod"
327327
},
328-
{
329-
"name": "Haehn, Daniel"
330-
},
331328
{
332329
"name": "Lai, Jeff"
333330
},
@@ -449,6 +446,9 @@
449446
{
450447
"name": "Mertz, Fred"
451448
},
449+
{
450+
"name": "Haehn, Daniel"
451+
},
452452
{
453453
"affiliation": "Technische Universit\u00e4t Dresden, Faculty of Medicine, Department of Child and Adolescent Psychiatry",
454454
"name": "Geisler, Daniel",

doc/changelog/1.X.X-changelog

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
1.1.1 (July 30, 2018)
2+
=====================
3+
4+
##### [Full changelog](https://github.com/nipy/nipype/milestone/22?closed=1)
5+
6+
* FIX: Un-set incorrect default options in TOPUP (https://github.com/nipy/nipype/pull/2637)
7+
* FIX: Copy FSCommand.version to ReconAll.version (https://github.com/nipy/nipype/pull/2656)
8+
* FIX: Various BIDSDataGrabber fixes (https://github.com/nipy/nipype/pull/2651)
9+
* FIX: changing Node._output_dir to realpath (https://github.com/nipy/nipype/pull/2639)
10+
* FIX: Typo in DWIExtract of Mrtrix3interface (https://github.com/nipy/nipype/pull/2634)
11+
* FIX: Typo in FSLXCommandInputSpec (https://github.com/nipy/nipype/pull/2628)
12+
* ENH: Allow transform to be saved from AFNI 3dWarp (https://github.com/nipy/nipype/pull/2642)
13+
* ENH: Allow BIDS-style slice timings to be passed directly to TShift (https://github.com/nipy/nipype/pull/2608)
14+
* ENH: S3 access using instance role (https://github.com/nipy/nipype/pull/2621)
15+
* ENH Minor improvements to PR template (https://github.com/nipy/nipype/pull/2636)
16+
* TEST: make specs (https://github.com/nipy/nipype/pull/2653)
17+
* DOC: update neurodocker tutorial for neurodocker version 0.4.0 (https://github.com/nipy/nipype/pull/2647)
18+
* MAINT: Remove vestiges of nose testing library (https://github.com/nipy/nipype/pull/2662)
19+
* MAINT: Make pytest-xdist a dependency (https://github.com/nipy/nipype/pull/2649)
20+
* CI: Install pytest>=3.4 in Travis (https://github.com/nipy/nipype/pull/2659)
21+
22+
123
1.1.0 (July 04, 2018)
224
=====================
325

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# The short X.Y version.
8383
version = nipype.__version__
8484
# The full version, including alpha/beta/rc tags.
85-
release = "1.1.0"
85+
release = "1.1.1"
8686

8787
# The language for content autogenerated by Sphinx. Refer to documentation
8888
# for a list of supported languages.

doc/documentation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation
99
:Release: |version|
1010
:Date: |today|
1111

12-
Previous versions: `1.0.3 <http://nipype.readthedocs.io/en/1.0.3/>`_ `1.0.2 <http://nipype.readthedocs.io/en/1.0.2/>`_
12+
Previous versions: `1.1.0 <http://nipype.readthedocs.io/en/1.1.0/>`_ `1.0.4 <http://nipype.readthedocs.io/en/1.0.4/>`_
1313

1414

1515
.. container:: doc2

nipype/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# full release. '.dev' as a version_extra string means this is a development
1212
# version
1313
# Remove -dev for release
14-
__version__ = '1.1.1-dev'
14+
__version__ = '1.1.1'
1515

1616

1717
def get_nipype_gitversion():

nipype/interfaces/ants/registration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class ANTSOutputSpec(TraitedSpec):
125125

126126

127127
class ANTS(ANTSCommand):
128-
"""ANTS wrapper for registration of images
128+
"""ANTS wrapper for registration of images
129129
(old, use Registration instead)
130130
131131
Examples

nipype/interfaces/io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def add_traits(base, names, trait_type=None):
124124

125125

126126
def _get_head_bucket(s3_resource, bucket_name):
127-
""" Try to get the header info of a bucket, in order to
127+
""" Try to get the header info of a bucket, in order to
128128
check if it exists and its permissions
129129
"""
130130

nipype/utils/filemanip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ def loadpkl(infile, versioning=False):
662662

663663
return unpkl
664664

665-
# Unpickling problems
665+
# Unpickling problems
666666
except Exception as e:
667667
if not versioning:
668668
raise e

nipype/utils/tests/test_filemanip.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ class PickledBreaker:
547547
def __setstate__(self, d):
548548
raise Exception()
549549

550-
550+
551551
def test_versioned_pklization(tmpdir):
552552
tmpdir.chdir()
553553

@@ -560,7 +560,7 @@ def test_versioned_pklization(tmpdir):
560560

561561
loadpkl('./pickled.pkz', versioning=True)
562562

563-
563+
564564
def test_unversioned_pklization(tmpdir):
565565
tmpdir.chdir()
566566

0 commit comments

Comments
 (0)