File tree Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1- pybids ~ =0.11 .1
1+ pybids > =0.12 .1
22requests
33tqdm
44pytest
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ project_urls =
2424[options]
2525python_requires = >= 3.6
2626install_requires =
27- pybids >= 0.11 .1
27+ pybids >= 0.12 .1
2828 requests
2929 tqdm
3030test_requires =
Original file line number Diff line number Diff line change @@ -88,20 +88,24 @@ def _update_datalad():
8888
8989def init_layout ():
9090 from .bids import Layout
91+ from bids .layout .index import BIDSLayoutIndexer
9192
9293 global TF_LAYOUT
9394 TF_LAYOUT = Layout (
9495 TF_HOME ,
9596 validate = False ,
9697 config = "templateflow" ,
97- ignore = [
98- ".git" ,
99- ".datalad" ,
100- ".gitannex" ,
101- ".gitattributes" ,
102- ".github" ,
103- "scripts" ,
104- ],
98+ indexer = BIDSLayoutIndexer (
99+ validate = False ,
100+ ignore = (
101+ ".git" ,
102+ ".datalad" ,
103+ ".gitannex" ,
104+ ".gitattributes" ,
105+ ".github" ,
106+ "scripts" ,
107+ ),
108+ ),
105109 )
106110
107111
You can’t perform that action at this time.
0 commit comments