Skip to content

Commit

Permalink
Merge pull request #1356 from poldracklab/enh/no_keep_file_open
Browse files Browse the repository at this point in the history
ENH: Do not set KEEP_FILE_OPEN_DEFAULT
  • Loading branch information
effigies committed Oct 31, 2018
2 parents 2dd83d7 + a48783c commit 6d2edcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -601,8 +601,10 @@ jobs:
at: /tmp
- restore_cache:
keys:
- ds210-anat-v4-{{ epoch }}
- ds210-anat-v4-
- ds210-anat-v5-{{ .Branch }}-{{ epoch }}
- ds210-anat-v5-{{ .Branch }}
- ds210-anat-v5-master
- ds210-anat-v5-
- run:
name: Setting up test
command: |
Expand Down Expand Up @@ -636,7 +638,7 @@ jobs:
--fs-no-reconall --sloppy --write-graph \
--mem_mb 4096 --nthreads 2 --anat-only -vv
- save_cache:
key: ds210-anat-v4-{{ epoch }}
key: ds210-anat-v5-{{ .Branch }}-{{ epoch }}
paths:
- /tmp/ds210/work
- /tmp/ds210/derivatives
Expand Down
3 changes: 0 additions & 3 deletions fmriprep/cli/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
from argparse import RawTextHelpFormatter
from multiprocessing import cpu_count
from time import strftime
import nibabel

nibabel.arrayproxy.KEEP_FILE_OPEN_DEFAULT = 'auto'

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

0 comments on commit 6d2edcb

Please sign in to comment.