Skip to content

Commit 355c5bc

Browse files
committed
Replace deprecated imghdr
The module will be removed from Python 3.13: https://docs.python.org/3.13/whatsnew/3.13.html#pep-594-dead-batteries-and-other-module-removals
1 parent 4d1352a commit 355c5bc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

nipype/info.py

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ def get_nipype_gitversion():
149149
"filelock>=3.0.0",
150150
"etelemetry>=0.2.0",
151151
"looseversion!=1.2",
152+
"puremagic",
152153
]
153154

154155
TESTS_REQUIRES = [

nipype/interfaces/dcmstack.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from glob import glob
88

99
import nibabel as nb
10-
import imghdr
10+
import puremagic
1111

1212
from .base import (
1313
TraitedSpec,
@@ -152,7 +152,7 @@ def _run_interface(self, runtime):
152152
meta_filter = dcmstack.make_key_regex_filter(exclude_regexes, include_regexes)
153153
stack = dcmstack.DicomStack(meta_filter=meta_filter)
154154
for src_path in src_paths:
155-
if not imghdr.what(src_path) == "gif":
155+
if not puremagic.what(src_path) == "gif":
156156
src_dcm = pydicom.dcmread(src_path, force=self.inputs.force_read)
157157
stack.add_dcm(src_dcm)
158158
nii = stack.to_nifti(embed_meta=True)

0 commit comments

Comments
 (0)