Skip to content

Commit 3556143

Browse files
committed
Merge tag '25.2.1'
25.2.1 (October 22, 2025) Patch release in the 25.2.x series. Fixes an issue where when both T1w and T2w anatomical images were present, there was a potential incorrect count of T2w images - leading to downstream crashes. - Bug Fixes * FIX: Incorrect number of found T2w scans (#498)
2 parents d7b7689 + 7575df6 commit 3556143

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
25.2.1 (October 22, 2025)
2+
=========================
3+
Patch release in the 25.2.x series.
4+
5+
Fixes an issue where when both T1w and T2w anatomical images were present, there was a potential incorrect count of T2w images - leading to downstream crashes.
6+
7+
### Bug Fixes
8+
* FIX: Incorrect number of found T2w scans (#498)
9+
110
25.2.0 (September 25, 2025)
211
===========================
312
The first release of the 25.2.x series.

nibabies/workflows/anatomical/fit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def init_infant_anat_fit_wf(
406406

407407
t2w_template_wf = init_anat_template_wf(
408408
image_type='T2w',
409-
num_files=num_t1w,
409+
num_files=num_t2w,
410410
longitudinal=longitudinal,
411411
omp_nthreads=omp_nthreads,
412412
name='t2w_template_wf',

0 commit comments

Comments
 (0)