Skip to content

Commit 2055ee2

Browse files
authored
👽 Filter out GroupBy FutureWarning (#77)
1 parent 42ec7eb commit 2055ee2

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/mapply/mapply.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@
6161
category=FutureWarning,
6262
)
6363

64+
warnings.filterwarnings(
65+
action="ignore",
66+
message=".*grouper",
67+
category=FutureWarning,
68+
)
69+
6470

6571
def _choose_n_chunks(
6672
shape: tuple[int, ...],

0 commit comments

Comments
 (0)