Skip to content

Commit 49db1e8

Browse files
authored
Merge pull request #125 from nipreps/wrapper_python_version
fix: Bump Python site-packages path in wrapper
2 parents 7cf0f05 + 223c0c5 commit 49db1e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wrapper/src/petprep_docker/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
MISSING = """
3333
Image '{}' is missing
3434
Would you like to download? [Y/n] """
35-
PKG_PATH = '/opt/conda/envs/petprep/lib/python3.10/site-packages'
35+
PKG_PATH = '/opt/conda/envs/petprep/lib/python3.12/site-packages'
3636
TF_TEMPLATES = (
3737
'MNI152Lin',
3838
'MNI152NLin2009cAsym',
@@ -49,7 +49,7 @@
4949
'fsaverage5',
5050
'fsaverage6',
5151
)
52-
NONSTANDARD_REFERENCES = ('anat', 'T1w', 'run', 'func', 'sbref', 'fsnative')
52+
NONSTANDARD_REFERENCES = ('anat', 'T1w', 'run', 'func', 'sbref', 'fsnative', 'pet')
5353

5454
# Monkey-patch Py2 subprocess
5555
if not hasattr(subprocess, 'DEVNULL'):

0 commit comments

Comments
 (0)