Skip to content

Commit 771a3cb

Browse files
committed
[FIX] resolves #1485 : patch fmriprep-docker automount for use with Python 3.7
1 parent 8fcc210 commit 771a3cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

wrapper/fmriprep_docker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,14 @@
5454
'Programming Language :: Python :: 2.7',
5555
'Programming Language :: Python :: 3.5',
5656
'Programming Language :: Python :: 3.6',
57+
'Programming Language :: Python :: 3.7',
5758
]
5859

5960

6061
MISSING = """
6162
Image '{}' is missing
6263
Would you like to download? [Y/n] """
63-
PKG_PATH = '/usr/local/miniconda/lib/python3.6/site-packages'
64+
PKG_PATH = '/usr/local/miniconda/lib/python3.7/site-packages'
6465

6566
# Monkey-patch Py2 subprocess
6667
if not hasattr(subprocess, 'DEVNULL'):

0 commit comments

Comments
 (0)