From 74643e2fe2a23ef74efd49809f7b287c3cbc13ea Mon Sep 17 00:00:00 2001 From: James Kent Date: Sat, 8 Feb 2020 17:49:18 -0600 Subject: [PATCH 01/16] Update .zenodo.json --- .zenodo.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.zenodo.json b/.zenodo.json index b8f2c4fb67..8431a53a3b 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -336,7 +336,9 @@ "orcid": "0000-0001-7221-9042" }, { - "name": "Kent, James" + "affiliation": "Neuroscience Program, University of Iowa", + "name": "Kent, James D.", + "orcid": "0000-0002-4892-2659" }, { "affiliation": "UniversityHospital Heidelberg, Germany", From fc92cf27e2d741781142f702bdefb88800917d6f Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Mon, 10 Feb 2020 10:50:01 +0100 Subject: [PATCH 02/16] Update model.py --- nipype/interfaces/fsl/model.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nipype/interfaces/fsl/model.py b/nipype/interfaces/fsl/model.py index b4e04c690e..dc28f919a4 100644 --- a/nipype/interfaces/fsl/model.py +++ b/nipype/interfaces/fsl/model.py @@ -1573,9 +1573,8 @@ def _run_interface(self, runtime): convals = np.zeros((ntcons, 1)) for tcon in con[2]: convals[tconmap[self.inputs.contrasts.index(tcon)]] = 1 - fcon_txt.append(" ".join(["%d" % val for val in convals])) - fcon_txt = "\n".join(fcon_txt) - fcon_txt += "\n" + fcon_txt.append(" ".join(["%d" % val for val in convals])) + fcon_txt = "\n".join(fcon_txt) + "\n" # write group file grp_txt = ["/NumWaves 1", "/NumPoints %d" % npoints, "", "/Matrix"] for i in range(npoints): From 325aeaf5538cdb5032959921772aa5e42ac03f2f Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Mon, 10 Feb 2020 11:14:02 +0100 Subject: [PATCH 03/16] Update .zenodo.json --- .zenodo.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zenodo.json b/.zenodo.json index 8431a53a3b..f55021c890 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -761,6 +761,11 @@ "name": "Mihai, Paul Glad", "orcid": "0000-0001-5715-6442" }, + { + "affiliation": "Department of Psychology, University of Bielefeld, Bielefeld, Germany.", + "name": "Doll, Anna", + "orcid": "0000-0002-0799-0831" + }, { "name": "Lai, Jeff" }, From b5136a44981679413e9fbf8fc56ed5a374adbbad Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Mon, 10 Feb 2020 11:50:40 +0100 Subject: [PATCH 04/16] Update model.py remove whitespace --- nipype/interfaces/fsl/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/interfaces/fsl/model.py b/nipype/interfaces/fsl/model.py index dc28f919a4..e06377cb4d 100644 --- a/nipype/interfaces/fsl/model.py +++ b/nipype/interfaces/fsl/model.py @@ -1573,7 +1573,7 @@ def _run_interface(self, runtime): convals = np.zeros((ntcons, 1)) for tcon in con[2]: convals[tconmap[self.inputs.contrasts.index(tcon)]] = 1 - fcon_txt.append(" ".join(["%d" % val for val in convals])) + fcon_txt.append(" ".join(["%d" % val for val in convals])) fcon_txt = "\n".join(fcon_txt) + "\n" # write group file grp_txt = ["/NumWaves 1", "/NumPoints %d" % npoints, "", "/Matrix"] From ffffdc288541bad46b2a9bc0a6ef6e117a1f9b2a Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Thu, 13 Feb 2020 14:07:00 +0100 Subject: [PATCH 05/16] Update test_model.py --- nipype/interfaces/fsl/tests/test_model.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/nipype/interfaces/fsl/tests/test_model.py b/nipype/interfaces/fsl/tests/test_model.py index ea86d8f628..aaef99889f 100644 --- a/nipype/interfaces/fsl/tests/test_model.py +++ b/nipype/interfaces/fsl/tests/test_model.py @@ -6,23 +6,23 @@ import pytest import nipype.interfaces.fsl.model as fsl from nipype.interfaces.fsl import no_fsl +from pathlib import Path @pytest.mark.skipif(no_fsl(), reason="fsl is not installed") def test_MultipleRegressDesign(tmpdir): - tmpdir.chdir() foo = fsl.MultipleRegressDesign() foo.inputs.regressors = dict( voice_stenght=[1, 1, 1], age=[0.2, 0.4, 0.5], BMI=[1, -1, 2] ) con1 = ["voice_and_age", "T", ["age", "voice_stenght"], [0.5, 0.5]] con2 = ["just_BMI", "T", ["BMI"], [1]] - foo.inputs.contrasts = [con1, con2, ["con3", "F", [con1, con2]]] + foo.inputs.contrasts = [con1, con2, ["con3", "F", [con1, con2]], ["con4", "F", [con2]]] res = foo.run() for ii in ["mat", "con", "fts", "grp"]: assert ( - getattr(res.outputs, "design_" + ii) == tmpdir.join("design." + ii).strpath + os.path.exists(eval('res.outputs.design_'+ii)) ) design_mat_expected_content = """/NumWaves 3 @@ -48,10 +48,11 @@ def test_MultipleRegressDesign(tmpdir): """ design_fts_expected_content = """/NumWaves 2 -/NumContrasts 1 +/NumContrasts 2 /Matrix 1 1 +0 1 """ design_grp_expected_content = """/NumWaves 1 @@ -63,6 +64,4 @@ def test_MultipleRegressDesign(tmpdir): 1 """ for ii in ["mat", "con", "fts", "grp"]: - assert tmpdir.join("design." + ii).read() == eval( - "design_" + ii + "_expected_content" - ) + assert Path(eval('res.outputs.design_'+ii)).read_text() in eval( "design_" + ii + "_expected_content") From ac21cb192ccd577ff3800e159f6d8cd62db04449 Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Thu, 13 Feb 2020 18:43:28 +0100 Subject: [PATCH 06/16] Update nipype/interfaces/fsl/tests/test_model.py Co-Authored-By: Chris Markiewicz --- nipype/interfaces/fsl/tests/test_model.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nipype/interfaces/fsl/tests/test_model.py b/nipype/interfaces/fsl/tests/test_model.py index aaef99889f..c057b8262c 100644 --- a/nipype/interfaces/fsl/tests/test_model.py +++ b/nipype/interfaces/fsl/tests/test_model.py @@ -25,7 +25,9 @@ def test_MultipleRegressDesign(tmpdir): os.path.exists(eval('res.outputs.design_'+ii)) ) - design_mat_expected_content = """/NumWaves 3 + expected_content = {} + + expected_content["design_mat"] = """/NumWaves 3 /NumPoints 3 /PPheights 3.000000e+00 5.000000e-01 1.000000e+00 From e19a0a265def869c055ab7992362736e4c3522c0 Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Thu, 13 Feb 2020 18:44:27 +0100 Subject: [PATCH 07/16] Update nipype/interfaces/fsl/tests/test_model.py Co-Authored-By: Chris Markiewicz --- nipype/interfaces/fsl/tests/test_model.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nipype/interfaces/fsl/tests/test_model.py b/nipype/interfaces/fsl/tests/test_model.py index c057b8262c..f86cfb7eec 100644 --- a/nipype/interfaces/fsl/tests/test_model.py +++ b/nipype/interfaces/fsl/tests/test_model.py @@ -66,4 +66,5 @@ def test_MultipleRegressDesign(tmpdir): 1 """ for ii in ["mat", "con", "fts", "grp"]: - assert Path(eval('res.outputs.design_'+ii)).read_text() in eval( "design_" + ii + "_expected_content") + outfile = "design_" + ii + assert Path(outputs[outfile]).read_text() == expected_content[outfile] From e5db7d66321a19584517cfa29892c6c03b250e7f Mon Sep 17 00:00:00 2001 From: AnnaD <45283972+AnnaD15@users.noreply.github.com> Date: Thu, 13 Feb 2020 19:01:19 +0100 Subject: [PATCH 08/16] Update test_model.py --- nipype/interfaces/fsl/tests/test_model.py | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/nipype/interfaces/fsl/tests/test_model.py b/nipype/interfaces/fsl/tests/test_model.py index f86cfb7eec..456e7b6492 100644 --- a/nipype/interfaces/fsl/tests/test_model.py +++ b/nipype/interfaces/fsl/tests/test_model.py @@ -7,23 +7,23 @@ import nipype.interfaces.fsl.model as fsl from nipype.interfaces.fsl import no_fsl from pathlib import Path +from ....pipeline import engine as pe @pytest.mark.skipif(no_fsl(), reason="fsl is not installed") def test_MultipleRegressDesign(tmpdir): - foo = fsl.MultipleRegressDesign() - foo.inputs.regressors = dict( + designer = pe.Node(fsl.MultipleRegressDesign(), name='designer', base_dir=str(tmpdir)) + designer.inputs.regressors = dict( voice_stenght=[1, 1, 1], age=[0.2, 0.4, 0.5], BMI=[1, -1, 2] ) con1 = ["voice_and_age", "T", ["age", "voice_stenght"], [0.5, 0.5]] con2 = ["just_BMI", "T", ["BMI"], [1]] - foo.inputs.contrasts = [con1, con2, ["con3", "F", [con1, con2]], ["con4", "F", [con2]]] - res = foo.run() + designer.inputs.contrasts = [con1, con2, ["con3", "F", [con1, con2]], ["con4", "F", [con2]]] + res = designer.run() + outputs = res.outputs.get_traitsfree() - for ii in ["mat", "con", "fts", "grp"]: - assert ( - os.path.exists(eval('res.outputs.design_'+ii)) - ) + for ftype in ["mat", "con", "fts", "grp"]: + assert Path(outputs["design_" + ftype]).exists() expected_content = {} @@ -37,7 +37,7 @@ def test_MultipleRegressDesign(tmpdir): 2.000000e+00 5.000000e-01 1.000000e+00 """ - design_con_expected_content = """/ContrastName1 voice_and_age + expected_content["design_con"] = """/ContrastName1 voice_and_age /ContrastName2 just_BMI /NumWaves 3 /NumContrasts 2 @@ -49,7 +49,7 @@ def test_MultipleRegressDesign(tmpdir): 1.000000e+00 0.000000e+00 0.000000e+00 """ - design_fts_expected_content = """/NumWaves 2 + expected_content["design_fts"] = """/NumWaves 2 /NumContrasts 2 /Matrix @@ -57,7 +57,7 @@ def test_MultipleRegressDesign(tmpdir): 0 1 """ - design_grp_expected_content = """/NumWaves 1 + expected_content["design_grp"] = """/NumWaves 1 /NumPoints 3 /Matrix @@ -65,6 +65,6 @@ def test_MultipleRegressDesign(tmpdir): 1 1 """ - for ii in ["mat", "con", "fts", "grp"]: - outfile = "design_" + ii + for ftype in ["mat", "con", "fts", "grp"]: + outfile = "design_" + ftype assert Path(outputs[outfile]).read_text() == expected_content[outfile] From 493968963dddaa124791bbcfd0ef26d087fec9d1 Mon Sep 17 00:00:00 2001 From: Ali Ghayoor Date: Mon, 10 Feb 2020 12:34:24 -0500 Subject: [PATCH 09/16] DOC: Updated .zenodo.json file --- .zenodo.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.zenodo.json b/.zenodo.json index f55021c890..0276c5cb86 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -348,7 +348,9 @@ "name": "Erickson, Drew" }, { - "name": "Ghayoor, Ali" + "affiliation": "The University of Iowa", + "name": "Ghayoor, Ali", + "orcid": "0000-0002-8858-1254" }, { "affiliation": "Child Mind Institute", From b10345079a0a3489d2db4a46be28b7541efbd565 Mon Sep 17 00:00:00 2001 From: Luke Bloy Date: Tue, 11 Feb 2020 15:48:36 -0500 Subject: [PATCH 10/16] FIX 3164 --- nipype/pipeline/plugins/sgegraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/pipeline/plugins/sgegraph.py b/nipype/pipeline/plugins/sgegraph.py index 82d1cc0e58..489e48186c 100644 --- a/nipype/pipeline/plugins/sgegraph.py +++ b/nipype/pipeline/plugins/sgegraph.py @@ -148,7 +148,7 @@ def make_job_name(jobnumber, nodeslist): stdoutFile = "" if self._qsub_args.count("-o ") == 0: stdoutFile = "-o {outFile}".format(outFile=batchscriptoutfile) - full_line = "{jobNm}=$(qsub {outFileOption} {errFileOption} {extraQSubArgs} {dependantIndex} -N {jobNm} {batchscript} | awk '{{print $3}}')\n".format( + full_line = "{jobNm}=$(qsub {outFileOption} {errFileOption} {extraQSubArgs} {dependantIndex} -N {jobNm} {batchscript} | awk '/^Your job/{{print $3}}')\n".format( jobNm=jobname, outFileOption=stdoutFile, errFileOption=stderrFile, From 551c65404dd84a572916a5217c65f272c720882c Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 12 Feb 2020 11:29:37 -0500 Subject: [PATCH 11/16] MNT: Update .mailmap to improve matches --- .mailmap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.mailmap b/.mailmap index ab924a2e42..1565f69fa5 100644 --- a/.mailmap +++ b/.mailmap @@ -36,9 +36,11 @@ Caroline Froehlich Christopher J. Markiewicz Christopher J. Markiewicz Christopher J. Markiewicz +Christopher John Steele Cindee Madison Colin Buchanan Colin Buchanan +Colin Buchanan Daniel Brenner Daniel Clark Daniel Geisler From 34dcd12667d5ca3d7eb8bc1c76cc686054f7b1dc Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 12 Feb 2020 12:59:50 -0500 Subject: [PATCH 12/16] DOC: Update docs to reference latest Zenodo archive --- doc/about.rst | 197 ++++---------------------------------------------- 1 file changed, 13 insertions(+), 184 deletions(-) diff --git a/doc/about.rst b/doc/about.rst index 45a6e30229..8375c4e9e0 100644 --- a/doc/about.rst +++ b/doc/about.rst @@ -10,192 +10,21 @@ About Citation -------- -.. admonition:: Reference - - Gorgolewski, Krzysztof J.; Esteban, Oscar; Ellis, David Gage; Notter, - Michael Philipp; Ziegler, Erik; Johnson, Hans; Hamalainen, Carlo; - Yvernault, Benjamin; Burns, Christopher; Manhães-Savio, Alexandre; - Jarecka, Dorota; Markiewicz, Christopher J.; Salo, Taylor; Clark, Daniel; - Waskom, Michael; Wong, Jason; Modat, Marc; Dewey, Blake E; Clark, Michael G.; - Dayan, Michael; Loney, Fred; Madison, Cindee; Gramfort, Alexandre; - Keshavan, Anisha; Berleant, Shoshana; Pinsard, Basile; Goncalves, Mathias; - Clark, Dav; Cipollini, Ben; Varoquaux, Gael; Wassermann , Demian; - Rokem, Ariel; Halchenko, Yaroslav O.; Forbes, Jessica; Moloney, Brendan; - Malone, Ian B.; Hanke, Michael; Mordom, David; Buchanan, Colin; - PAULI, WOLFGANG M.; Huntenburg, Julia M.; Horea, Christian; Schwartz, - Yannick; Tungaraza, Rosalia; Iqbal, Shariq; Kleesiek, Jens; Sikka, Sharad; - Frohlich, Caroline; Kent, James; Perez-Guevara, Martin; Watanabe, Aimi; Welch, - David; Cumba, Chad; Ginsburg, Daniel; Eshaghi, Arman; Kastman, Erik; - Bougacha, Salma; Blair, Ross; Acland, Benjamin; Gillman, Ashley; Schaefer, - Alexander; Nichols, B. Nolan; Giavasis, Steven; Erickson, Drew; Correa, - Carlos; Ghayoor, Ali; Küttner, René; Haselgrove, Christian; Zhou, Dale; - Craddock, R. Cameron; Haehn, Daniel; Lampe, Leonie; Millman, Jarrod; Lai, Jeff; - Renfro, Mandy; Liu, Siqi; Stadler, Jörg; Glatard, Tristan; Kahn, Ari E.; - Kong, Xiang-Zhen; Triplett, William; Park, Anne; McDermottroe, Conor; - Hallquist, Michael; Poldrack, Russell; Perkins, L. Nathan; Noel, Maxime; - Gerhard, Stephan; Salvatore, John; Mertz, Fred; Broderick, William; - Inati, Souheil; Hinds, Oliver; Brett, Matthew; Durnez, Joke; Tambini, - Arielle; Rothmei, Simon; Andberg, Sami Kristian; Cooper, Gavin; Marina, - Ana; Mattfeld, Aaron; Urchs, Sebastian; Sharp, Paul; Matsubara, K; Geisler, - Daniel; Cheung, Brian; Floren, Andrew; Nickson, Thomas; Pannetier, Nicolas; - Weinstein, Alejandro; Dubois, Mathieu; Arias, Jaime; Tarbert, Claire; Schlamp, - Kai; Jordan, Kesshi; Liem, Franz; Saase, Victor; Harms, Robbert; Khanuja, - Ranjeet; Podranski, Kornelius; Flandin, Guillaume; Papadopoulos Orfanos, - Dimitri; Schwabacher, Isaac; McNamee, Daniel; Falkiewicz, Marcel; - Pellman, John; Linkersdörfer, Janosch; Varada, Jan; Pérez-García, Fernando; - Davison, Andrew; Shachnev, Dmitry; Ghosh, Satrajit (2017). Nipype: - a flexible, lightweight and extensible neuroimaging data processing framework in Python. - 0.13.0 Zenodo. `10.5281/zenodo.581704 `_ - -:: - - @misc{gorgolewski_krzysztof_j_2017_581704, - author = {Gorgolewski, Krzysztof J. and - Esteban, Oscar and - Ellis, David Gage and - Notter, Michael Philipp and - Ziegler, Erik and - Johnson, Hans and - Hamalainen, Carlo and - Yvernault, Benjamin and - Burns, Christopher and - Manhães-Savio, Alexandre and - Jarecka, Dorota and - Markiewicz, Christopher J. and - Salo, Taylor and - Clark, Daniel and - Waskom, Michael and - Wong, Jason and - Modat, Marc and - Dewey, Blake E and - Clark, Michael G. and - Dayan, Michael and - Loney, Fred and - Madison, Cindee and - Gramfort, Alexandre and - Keshavan, Anisha and - Berleant, Shoshana and - Pinsard, Basile and - Goncalves, Mathias and - Clark, Dav and - Cipollini, Ben and - Varoquaux, Gael and - Wassermann , Demian and - Rokem, Ariel and - Halchenko, Yaroslav O. and - Forbes, Jessica and - Moloney, Brendan and - Malone, Ian B. and - Hanke, Michael and - Mordom, David and - Buchanan, Colin and - PAULI, WOLFGANG M. and - Huntenburg, Julia M. and - Horea, Christian and - Schwartz, Yannick and - Tungaraza, Rosalia and - Iqbal, Shariq and - Kleesiek, Jens and - Sikka, Sharad and - Frohlich, Caroline and - Kent, James and - Perez-Guevara, Martin and - Watanabe, Aimi and - Welch, David and - Cumba, Chad and - Ginsburg, Daniel and - Eshaghi, Arman and - Kastman, Erik and - Bougacha, Salma and - Blair, Ross and - Acland, Benjamin and - Gillman, Ashley and - Schaefer, Alexander and - Nichols, B. Nolan and - Giavasis, Steven and - Erickson, Drew and - Correa, Carlos and - Ghayoor, Ali and - Küttner, René and - Haselgrove, Christian and - Zhou, Dale and - Craddock, R. Cameron and - Haehn, Daniel and - Lampe, Leonie and - Millman, Jarrod and - Lai, Jeff and - Renfro, Mandy and - Liu, Siqi and - Stadler, Jörg and - Glatard, Tristan and - Kahn, Ari E. and - Kong, Xiang-Zhen and - Triplett, William and - Park, Anne and - McDermottroe, Conor and - Hallquist, Michael and - Poldrack, Russell and - Perkins, L. Nathan and - Noel, Maxime and - Gerhard, Stephan and - Salvatore, John and - Mertz, Fred and - Broderick, William and - Inati, Souheil and - Hinds, Oliver and - Brett, Matthew and - Durnez, Joke and - Tambini, Arielle and - Rothmei, Simon and - Andberg, Sami Kristian and - Cooper, Gavin and - Marina, Ana and - Mattfeld, Aaron and - Urchs, Sebastian and - Sharp, Paul and - Matsubara, K and - Geisler, Daniel and - Cheung, Brian and - Floren, Andrew and - Nickson, Thomas and - Pannetier, Nicolas and - Weinstein, Alejandro and - Dubois, Mathieu and - Arias, Jaime and - Tarbert, Claire and - Schlamp, Kai and - Jordan, Kesshi and - Liem, Franz and - Saase, Victor and - Harms, Robbert and - Khanuja, Ranjeet and - Podranski, Kornelius and - Flandin, Guillaume and - Papadopoulos Orfanos, Dimitri and - Schwabacher, Isaac and - McNamee, Daniel and - Falkiewicz, Marcel and - Pellman, John and - Linkersdörfer, Janosch and - Varada, Jan and - Pérez-García, Fernando and - Davison, Andrew and - Shachnev, Dmitry and - Ghosh, Satrajit}, - title = {nipy/nipype: Release 0.13.1}, - month = may, - year = 2017, - doi = {10.5281/zenodo.581704}, - url = {https://doi.org/10.5281/zenodo.581704} - } - -If you are a Nipype contributor and your name is not mentioned above please submit -a Pull Request modifying `.zenodo.json` file. - -When publishing results obtained using Nipype we strongly encourage citing the above reference to give credit to all -Nipype contributors. However, if for some reason the journal you are publishing with does not allow you do cite software +Each Nipype release is archived on `Zenodo `__, which provides a +:abbr:`DOI (Digital Object Identifier)` for the project and each release, separately. +The project DOI (`10.5281/zenodo.596855 `__) will redirect +to the latest release archive, which contains all information needed to cite the release. + +If you are a Nipype contributor and your name is not mentioned in the latest release, please submit +a Pull Request modifying the `.zenodo.json +`__ file. + +When publishing results obtained using Nipype we strongly encourage citing the latest Zenodo +archive to give credit to all Nipype contributors. +However, if for some reason the journal you are publishing with does not allow you do cite software this way you can use the initial paper published in 2011 (see below). + .. admonition:: Reference Gorgolewski K, Burns CD, Madison C, Clark D, Halchenko YO, Waskom ML, From de7a3559be771ad55b4435d112f7274f8a54f7ca Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 14 Feb 2020 11:52:11 -0500 Subject: [PATCH 13/16] DOC: Update changelog --- doc/changelog/1.X.X-changelog.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/changelog/1.X.X-changelog.rst b/doc/changelog/1.X.X-changelog.rst index 1da7da60cb..802cb35f24 100644 --- a/doc/changelog/1.X.X-changelog.rst +++ b/doc/changelog/1.X.X-changelog.rst @@ -1,3 +1,11 @@ +1.4.2 (February 14, 2020) +========================= +(`Full changelog `__) + + * FIX: Allow ``fsl.MultipleRegressDesign`` to create multiple F-tests (https://github.com/nipy/nipype/pull/3166) + * FIX: Reliably parse SGE job IDs in the presence of warnings (https://github.com/nipy/nipype/pull/3168) + * FIX: Move TraitType import, handle API change for NoDefaultSpecified (https://github.com/nipy/nipype/pull/3159) + 1.4.1 (January 27, 2020) ======================== (`Full changelog `__) From f9a050d9e043e29e162f3f049d800deb702c850c Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 14 Feb 2020 12:08:23 -0500 Subject: [PATCH 14/16] MNT: Update .mailmap --- .mailmap | 1 + 1 file changed, 1 insertion(+) diff --git a/.mailmap b/.mailmap index 1565f69fa5..4df0aff6e5 100644 --- a/.mailmap +++ b/.mailmap @@ -16,6 +16,7 @@ Andrey Chetverikov Anibal Sólon Heinsfeld Anisha Keshavan Anisha Keshavan +Anna Doll <45283972+AnnaD15@users.noreply.github.com> Ariel Rokem Ariel Rokem Arman Eshaghi From f992c94540acfb374d05e0d8d1aac85394e5e731 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 14 Feb 2020 12:02:52 -0500 Subject: [PATCH 15/16] DOC: Update Zenodo ordering --- .zenodo.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 0276c5cb86..8532823a5f 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -344,14 +344,14 @@ "affiliation": "UniversityHospital Heidelberg, Germany", "name": "Kleesiek, Jens" }, - { - "name": "Erickson, Drew" - }, { "affiliation": "The University of Iowa", "name": "Ghayoor, Ali", "orcid": "0000-0002-8858-1254" }, + { + "name": "Erickson, Drew" + }, { "affiliation": "Child Mind Institute", "name": "Giavasis, Steven" @@ -396,6 +396,11 @@ "name": "Glen, Daniel", "orcid": "0000-0001-8456-5647" }, + { + "affiliation": "Department of Psychology, University of Bielefeld, Bielefeld, Germany.", + "name": "Doll, Anna", + "orcid": "0000-0002-0799-0831" + }, { "name": "Renfro, Mandy" }, @@ -459,11 +464,6 @@ { "name": "Park, Anne" }, - { - "affiliation": "Max Planck UCL Centre for Computational Psychiatry and Ageing Research, University College London", - "name": "Stojic, Hrvoje", - "orcid": "0000-0002-9699-9052" - }, { "affiliation": "Child Mind Institute", "name": "Craddock, R. Cameron", @@ -480,9 +480,9 @@ "name": "Perkins, L. Nathan" }, { - "affiliation": "University of Amsterdam", - "name": "Snoek, Lukas", - "orcid": "0000-0001-8972-204X" + "affiliation": "Max Planck UCL Centre for Computational Psychiatry and Ageing Research, University College London", + "name": "Stojic, Hrvoje", + "orcid": "0000-0002-9699-9052" }, { "affiliation": "Donders Institute for Brain, Cognition and Behavior, Center for Cognitive Neuroimaging", @@ -497,6 +497,11 @@ "name": "Grignard, Martin", "orcid": "0000-0001-5549-1861" }, + { + "affiliation": "University of Amsterdam", + "name": "Snoek, Lukas", + "orcid": "0000-0001-8972-204X" + }, { "affiliation": "Yale University; New Haven, CT, United States", "name": "Sisk, Lucinda M.", @@ -763,11 +768,6 @@ "name": "Mihai, Paul Glad", "orcid": "0000-0001-5715-6442" }, - { - "affiliation": "Department of Psychology, University of Bielefeld, Bielefeld, Germany.", - "name": "Doll, Anna", - "orcid": "0000-0002-0799-0831" - }, { "name": "Lai, Jeff" }, From c5ce0e2c973e21b813673cc1e11b0ca4829a4bb0 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 14 Feb 2020 12:21:48 -0500 Subject: [PATCH 16/16] MNT: 1.4.2 --- nipype/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/info.py b/nipype/info.py index 7331e5aaac..467dd6e239 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -5,7 +5,7 @@ # nipype version information # Remove -dev for release -__version__ = "1.4.2-dev" +__version__ = "1.4.2" def get_nipype_gitversion():