diff --git a/.zenodo.json b/.zenodo.json index 391b6dad6d..eec1b4536c 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -46,6 +46,12 @@ "name": "Ghosh, Satrajit", "orcid": "0000-0002-5312-6729", "type": "Researcher" + }, + { + "affiliation": "Department of Pediatrics, University of Minnesota, MN, USA", + "name": "Feczko, Eric", + "orcid": "0000-0003-1337-5517", + "type": "Researcher" } ], "keywords": [ diff --git a/CHANGES.rst b/CHANGES.rst index 29f7387304..65e135c06d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,20 @@ +0.10.0 (November 30, 2022) +========================== +New feature release in the 0.10.x series. + +This series supports fMRIPrep 22.1.x and Nibabies 22.2.x. + +This will be the last series to support Python 3.7. + +* FIX: Expand surfaces pattern to allow morphometrics (#312) +* ENH: Bind FreeSurfer subjects directory (#311) +* ENH: Output thickness, curvature, and sulcal depth files (#305) +* WRAPPER: Update patch location, use --patch syntax (#309) +* CI: Fix expected ds054 outputs (#310) +* CI: Set max Python version to 3.10 (#308) +* CI: Simplify actions to build once, test many (#304) +* CI: Update CircleCI docker orb (#302) + 0.9.2 (July 20, 2022) ===================== Bug-fix release in the 0.9.x series. diff --git a/setup.cfg b/setup.cfg index 44f3a7ed60..fe39252631 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,9 +11,10 @@ classifiers = Intended Audience :: Science/Research Topic :: Scientific/Engineering :: Image Recognition License :: OSI Approved :: BSD License - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 [options] python_requires = >=3.7 @@ -23,7 +24,7 @@ install_requires = matplotlib >= 2.2.0 nibabel >= 4.0.1 nipype >= 1.7.0 - niworkflows @ git+https://github.com/nipreps/niworkflows.git@master + niworkflows ~= 1.7.0 numpy packaging pybids >= 0.11.1 diff --git a/wrapper/smriprep_docker.py b/wrapper/smriprep_docker.py index 3c2f5e03cc..f69b0d7372 100755 --- a/wrapper/smriprep_docker.py +++ b/wrapper/smriprep_docker.py @@ -170,7 +170,7 @@ def _get_posargs(usage): # Make sure we're not clobbering options we don't mean to overlap = set(w_flags).intersection(t_flags) - expected_overlap = set(["h", "version", "w", "fs-license-file", "use-plugin"]) + expected_overlap = set(["h", "version", "w", "fs-license-file", "use-plugin", "fs-subjects-dir"]) assert overlap == expected_overlap, "Clobbering options: {}".format( ", ".join(overlap - expected_overlap)