Skip to content

Commit 6d2edcb

Browse files
authored
Merge pull request #1356 from poldracklab/enh/no_keep_file_open
ENH: Do not set KEEP_FILE_OPEN_DEFAULT
2 parents 2dd83d7 + a48783c commit 6d2edcb

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -601,8 +601,10 @@ jobs:
601601
at: /tmp
602602
- restore_cache:
603603
keys:
604-
- ds210-anat-v4-{{ epoch }}
605-
- ds210-anat-v4-
604+
- ds210-anat-v5-{{ .Branch }}-{{ epoch }}
605+
- ds210-anat-v5-{{ .Branch }}
606+
- ds210-anat-v5-master
607+
- ds210-anat-v5-
606608
- run:
607609
name: Setting up test
608610
command: |
@@ -636,7 +638,7 @@ jobs:
636638
--fs-no-reconall --sloppy --write-graph \
637639
--mem_mb 4096 --nthreads 2 --anat-only -vv
638640
- save_cache:
639-
key: ds210-anat-v4-{{ epoch }}
641+
key: ds210-anat-v5-{{ .Branch }}-{{ epoch }}
640642
paths:
641643
- /tmp/ds210/work
642644
- /tmp/ds210/derivatives

fmriprep/cli/run.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
from argparse import RawTextHelpFormatter
1919
from multiprocessing import cpu_count
2020
from time import strftime
21-
import nibabel
22-
23-
nibabel.arrayproxy.KEEP_FILE_OPEN_DEFAULT = 'auto'
2421

2522
logging.addLevelName(25, 'IMPORTANT') # Add a new level between INFO and WARNING
2623
logging.addLevelName(15, 'VERBOSE') # Add a new level between INFO and DEBUG

0 commit comments

Comments
 (0)