File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -203,5 +203,5 @@ dependencies:
203203 - formulaic==0.3.4
204204 - nibabel==3.2.2
205205 - pandas==1.4.2
206- - pybids==0.15.1
206+ - pybids==0.15.2
207207 - sqlalchemy==1.3.24
Original file line number Diff line number Diff line change 1- pybids >= 0.12.1
1+ pybids >= 0.15.2
22requests
33tqdm
44pytest
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ setup_requires =
3030 setuptools_scm >= 6.2
3131 wheel
3232install_requires =
33- pybids >= 0.12.1
33+ pybids >= 0.15.2
3434 requests
3535 tqdm
3636test_requires =
Original file line number Diff line number Diff line change 11"""Configuration and settings."""
22from os import getenv
3+ import re
34from warnings import warn
45from pathlib import Path
56from contextlib import suppress
@@ -151,12 +152,9 @@ def init_layout():
151152 indexer = BIDSLayoutIndexer (
152153 validate = False ,
153154 ignore = (
154- ".git" ,
155- ".datalad" ,
156- ".gitannex" ,
157- ".gitattributes" ,
158- ".github" ,
159- "scripts" ,
155+ re .compile (r"scripts/" ),
156+ re .compile (r"/\." ),
157+ re .compile (r"^\." ),
160158 ),
161159 ),
162160 )
You can’t perform that action at this time.
0 commit comments