Skip to content

Commit 76b34b8

Browse files
authored
Merge pull request #1121 from effigies/fix/formulaic
chore: Remove formulaic upper bound
2 parents cc3293a + 3617dbb commit 76b34b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies = [
2727
"scipy >=1.8", # SPEC 0 + 1yr (3yr)
2828
"nibabel >=4.0", # SPEC 0 + 1yr (3yr)
2929
"pandas >=1.4.0", # SPEC 0 + 1yr (3yr)
30-
"formulaic >=0.2.4, <0.6", # Tested on 0.2.4-0.5.2
30+
"formulaic >=0.2.4",
3131
"sqlalchemy >=1.3.16",
3232
"bids-validator>=1.14.7", # Keep up-to-date to ensure support for recent modalities
3333
"num2words >=0.5.5",

src/bids/modeling/tests/test_transformations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def test_split(collection):
286286
assert np.array_equal(rt_pre_values.sort(), rt_post_values.sort())
287287

288288
# Grouping SparseEventVariable by multiple columns
289-
transform.Split(collection, variables=['RT_2'], by=['respcat', 'loss'])
289+
transform.Split(collection, variables=['RT_2'], by=['loss', 'respcat'])
290290
assert 'RT_2.loss[13].respcat[-1]' in collection.variables.keys() and \
291291
'RT_2.loss[13].respcat[1]' in collection.variables.keys()
292292

0 commit comments

Comments
 (0)