Skip to content

Commit b448b60

Browse files
authored
Merge pull request #2800 from nipy/rel/1.1.6
REL: 1.1.6
2 parents 8a813fe + 1de9f69 commit b448b60

File tree

5 files changed

+49
-17
lines changed

5 files changed

+49
-17
lines changed

.circleci/config.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_machine_kwds: &machine_kwds
2-
image: circleci/classic:201710-02
2+
image: circleci/classic:201808-01
33

44
_store_artifacts_kwds: &store_artifacts_kwds
55
path: /home/circleci/work/tests
@@ -356,6 +356,16 @@ jobs:
356356
pip install dist/nipype-*-py2.py3-none-any.whl
357357
# Futures should not install in Python 3
358358
test $(pip show futures 2>/dev/null | wc -l) = "0"
359+
- run:
360+
name: Validate Python 3.7 installation
361+
command: |
362+
pyenv local 3.7.0
363+
pip install --upgrade pip
364+
# Pre-install a version of numpy that will not pass
365+
pip install numpy==1.15.0
366+
pip install dist/nipype-*-py2.py3-none-any.whl
367+
# Numpy should be upgraded to >= 1.15.3
368+
test "$(pip show numpy | grep Version)" \> "Version: 1.15.2"
359369
- store_artifacts:
360370
path: /home/circleci/nipype/dist
361371

.zenodo.json

+8-11
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,11 @@
380380
{
381381
"name": "Hallquist, Michael"
382382
},
383+
{
384+
"affiliation": "GIGA Institute",
385+
"name": "Grignard, Martin",
386+
"orcid": "0000-0001-5549-1861"
387+
},
383388
{
384389
"affiliation": "Donders Institute for Brain, Cognition and Behavior, Center for Cognitive Neuroimaging",
385390
"name": "Chetverikov, Andrey",
@@ -451,12 +456,6 @@
451456
"name": "Durnez, Joke",
452457
"orcid": "0000-0001-9030-2202"
453458
},
454-
{
455-
"name": "Mertz, Fred"
456-
},
457-
{
458-
"name": "Haehn, Daniel"
459-
},
460459
{
461460
"affiliation": "Technische Universit\u00e4t Dresden, Faculty of Medicine, Department of Child and Adolescent Psychiatry",
462461
"name": "Geisler, Daniel",
@@ -481,6 +480,9 @@
481480
"name": "Molina-Romero, Miguel",
482481
"orcid": "0000-0001-8054-0426"
483482
},
483+
{
484+
"name": "Haehn, Daniel"
485+
},
484486
{
485487
"name": "Weinstein, Alejandro"
486488
},
@@ -587,11 +589,6 @@
587589
"affiliation": "MIT, HMS",
588590
"name": "Ghosh, Satrajit",
589591
"orcid": "0000-0002-5312-6729"
590-
},
591-
{
592-
"affiliation": "GIGA Institute",
593-
"name": "Grignard, Martin",
594-
"orcid": "0000-0001-5549-1861"
595592
}
596593
],
597594
"keywords": [

doc/changelog/1.X.X-changelog

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
1.1.6 (November 26, 2018)
2+
=========================
3+
4+
##### [Full changelog](https://github.com/nipy/nipype/milestone/27?closed=1)
5+
6+
* [FIX] MapNodes fail when ``MultiProcPlugin`` passed by instance (https://github.com/nipy/nipype/pull/2786)
7+
* [FIX] --fineTune arguments order for MeshFix command (https://github.com/nipy/nipype/pull/2780)
8+
* [ENH] Add mp_context plugin arg for MultiProc (https://github.com/nipy/nipype/pull/2778)
9+
* [ENH] Create a crashfile even if 'stop_on_first_crash' is set (https://github.com/nipy/nipype/pull/2774)
10+
* [ENH] Add ExtractedBrainN4 output to ANTs CorticalThickness interface (https://github.com/nipy/nipype/pull/2784)
11+
* [STY] Combine split import (https://github.com/nipy/nipype/pull/2801)
12+
* [DOC] use https in css stylesheet url (https://github.com/nipy/nipype/pull/2779)
13+
* [MAINT] Outsource ``get_filecopy_info()`` from interfaces (https://github.com/nipy/nipype/pull/2798)
14+
* [MAINT] Import only Sequence to avoid DeprecationWarning (https://github.com/nipy/nipype/pull/2793)
15+
* [MAINT] One less DeprecationWarning (configparser) (https://github.com/nipy/nipype/pull/2794)
16+
* [MAINT] DeprecationWarning: use ``HasTraits.trait_set`` instead (https://github.com/nipy/nipype/pull/2792)
17+
* [MAINT] Stop using deprecated ``logger.warn()`` (https://github.com/nipy/nipype/pull/2788)
18+
* [MAINT] Move ``interfaces.base.run_command`` to ``nipype.utils.subprocess`` (https://github.com/nipy/nipype/pull/2777)
19+
* [MAINT] Force numpy>=1.15.4 when Python>=3.7 (https://github.com/nipy/nipype/pull/2775)
20+
21+
122
1.1.5 (November 08, 2018)
223
=========================
324

nipype/info.py

+5-3
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.6-dev'
14+
__version__ = '1.1.6'
1515

1616

1717
def get_nipype_gitversion():
@@ -101,9 +101,10 @@ def get_nipype_gitversion():
101101
# versions
102102
NIBABEL_MIN_VERSION = '2.1.0'
103103
NETWORKX_MIN_VERSION = '1.9'
104+
NUMPY_MIN_VERSION = '1.9.0'
104105
# Numpy bug in python 3.7:
105106
# https://www.opensourceanswers.com/blog/you-shouldnt-use-python-37-for-data-science-right-now.html
106-
NUMPY_MIN_VERSION = '1.9.0' if sys.version_info < (3, 7) else '1.15.4'
107+
NUMPY_MIN_VERSION_37 = '1.15.3'
107108
SCIPY_MIN_VERSION = '0.14'
108109
TRAITS_MIN_VERSION = '4.6'
109110
DATEUTIL_MIN_VERSION = '2.2'
@@ -135,7 +136,8 @@ def get_nipype_gitversion():
135136
REQUIRES = [
136137
'nibabel>=%s' % NIBABEL_MIN_VERSION,
137138
'networkx>=%s' % NETWORKX_MIN_VERSION,
138-
'numpy>=%s' % NUMPY_MIN_VERSION,
139+
'numpy>=%s ; python_version < "3.7"' % NUMPY_MIN_VERSION,
140+
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
139141
'python-dateutil>=%s' % DATEUTIL_MIN_VERSION,
140142
'scipy>=%s' % SCIPY_MIN_VERSION,
141143
'traits>=%s' % TRAITS_MIN_VERSION,

nipype/interfaces/tests/test_auto_MeshFix.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,23 @@ def test_MeshFix_inputs():
2020
epsilon_angle=dict(argstr='-a %f', ),
2121
finetuning_distance=dict(
2222
argstr='%f',
23+
position=-2,
2324
requires=['finetuning_substeps'],
2425
),
2526
finetuning_inwards=dict(
2627
argstr='--fineTuneIn ',
28+
position=-3,
2729
requires=['finetuning_distance', 'finetuning_substeps'],
2830
),
2931
finetuning_outwards=dict(
3032
argstr='--fineTuneOut ',
33+
position=-3,
3134
requires=['finetuning_distance', 'finetuning_substeps'],
3235
xor=['finetuning_inwards'],
3336
),
3437
finetuning_substeps=dict(
3538
argstr='%d',
39+
position=-1,
3640
requires=['finetuning_distance'],
3741
),
3842
in_file1=dict(
@@ -89,8 +93,6 @@ def test_MeshFix_inputs():
8993
for key, metadata in list(input_map.items()):
9094
for metakey, value in list(metadata.items()):
9195
assert getattr(inputs.traits()[key], metakey) == value
92-
93-
9496
def test_MeshFix_outputs():
9597
output_map = dict(mesh_file=dict(), )
9698
outputs = MeshFix.output_spec()

0 commit comments

Comments
 (0)