Skip to content

Commit dad5519

Browse files
committed
Merge remote-tracking branch 'upstream/maint/2.5.x'
2 parents 3e318c5 + 898cd88 commit dad5519

File tree

3 files changed

+22
-14
lines changed

3 files changed

+22
-14
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ jobs:
376376
command: |
377377
python -m venv /tmp/venv
378378
source /tmp/venv/bin/activate
379-
python -m pip install -U pip setuptools_scm
379+
python -m pip install -U pip setuptools setuptools_scm
380380
pip install --no-cache-dir -r docs/requirements.txt
381381
- run:
382382
name: Build only this commit

CHANGES.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2.5.2 (November 09, 2023)
2+
=========================
3+
Bug-fix release in the 2.5.x series.
4+
5+
This release includes a fix for phasediff/direct fieldmaps that were previously
6+
producing distortions outside the brain due to an incorrect masking of the fieldmap.
7+
8+
* FIX: Mask fieldmap before fitting spline field [backport gh-396] (#398)
9+
* DOC: Fix doc build for 2.5.x branch (#399)
10+
* MAINT: Make call to scipy.stats.mode compatible with scipy 1.11.0 (#371)
11+
112
2.5.1 (June 08, 2023)
213
=====================
314
Bug-fix release in the 2.5.x series.
@@ -6,7 +17,6 @@ Bug-fix release in the 2.5.x series.
617
* FIX: Ensure metadata is not present in entity query (#367)
718
* RF/FIX: Prioritize sbref and shortest echo for SyN-SDC (#364)
819

9-
1020
2.5.0 (June 01, 2023)
1121
=====================
1222
New feature release in the 2.5.x series.

Dockerfile

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,12 @@ RUN echo "Downloading Convert3D ..." \
147147
ENV C3DPATH="/opt/convert3d-1.0.0" \
148148
PATH="/opt/convert3d-1.0.0/bin:$PATH"
149149

150-
# Configure PPA for libpng12
150+
# Configure PPAs for libpng12 and libxp6
151151
RUN GNUPGHOME=/tmp gpg --keyserver hkps://keyserver.ubuntu.com --no-default-keyring --keyring /usr/share/keyrings/linuxuprising.gpg --recv 0xEA8CACC073C3DB2A \
152-
&& echo "deb [signed-by=/usr/share/keyrings/linuxuprising.gpg] https://ppa.launchpadcontent.net/linuxuprising/libpng12/ubuntu jammy main" > /etc/apt/sources.list.d/linuxuprising.list
153-
# AFNI latest (neurodocker build)
152+
&& GNUPGHOME=/tmp gpg --keyserver hkps://keyserver.ubuntu.com --no-default-keyring --keyring /usr/share/keyrings/zeehio.gpg --recv 0xA1301338A3A48C4A \
153+
&& echo "deb [signed-by=/usr/share/keyrings/linuxuprising.gpg] https://ppa.launchpadcontent.net/linuxuprising/libpng12/ubuntu jammy main" > /etc/apt/sources.list.d/linuxuprising.list \
154+
&& echo "deb [signed-by=/usr/share/keyrings/zeehio.gpg] https://ppa.launchpadcontent.net/zeehio/libxp/ubuntu jammy main" > /etc/apt/sources.list.d/zeehio.list
155+
# Dependencies for AFNI; requires a discontinued multiarch-support package from bionic (18.04)
154156
RUN apt-get update -qq \
155157
&& apt-get install -y -q --no-install-recommends \
156158
ed \
@@ -162,27 +164,23 @@ RUN apt-get update -qq \
162164
libjpeg62 \
163165
libpng12-0 \
164166
libxm4 \
167+
libxp6 \
165168
netpbm \
166169
tcsh \
167170
xfonts-base \
168171
xvfb \
169-
&& apt-get clean \
170-
&& rm -rf /var/lib/apt/lists/* \
171172
&& curl -sSL --retry 5 -o /tmp/multiarch.deb http://archive.ubuntu.com/ubuntu/pool/main/g/glibc/multiarch-support_2.27-3ubuntu1.5_amd64.deb \
172173
&& dpkg -i /tmp/multiarch.deb \
173174
&& rm /tmp/multiarch.deb \
174-
&& curl -sSL --retry 5 -o /tmp/libxp6.deb http://mirrors.kernel.org/debian/pool/main/libx/libxp/libxp6_1.0.2-2_amd64.deb \
175-
&& dpkg -i /tmp/libxp6.deb \
176-
&& rm /tmp/libxp6.deb \
177175
&& apt-get install -f \
178-
&& apt-get clean \
179-
&& rm -rf /var/lib/apt/lists/* \
176+
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
180177
&& gsl2_path="$(find / -name 'libgsl.so.19' || printf '')" \
181178
&& if [ -n "$gsl2_path" ]; then \
182179
ln -sfv "$gsl2_path" "$(dirname $gsl2_path)/libgsl.so.0"; \
183180
fi \
184-
&& ldconfig \
185-
&& echo "Downloading AFNI ..." \
181+
&& ldconfig
182+
# AFNI latest
183+
RUN echo "Downloading AFNI ..." \
186184
&& mkdir -p /opt/afni-latest \
187185
&& curl -fsSL --retry 5 https://afni.nimh.nih.gov/pub/dist/tgz/linux_openmp_64.tgz \
188186
| tar -xz -C /opt/afni-latest --strip-components 1 \

0 commit comments

Comments
 (0)