Skip to content

Commit

Permalink
Pyarrow >=18 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Sep 20, 2024
1 parent c2d6c51 commit a1ef5e3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,6 @@ def test_not_implemented():
table = pa.table({'value': list('abc'), 'key': [0, 1, 0]})
table = table.group_by('key').aggregate([agg])
assert table['value_max'].to_pylist() == list('cb') # min_count has no effect
value = pa.MonthDayNano([1, 2, 3])
with pytest.raises(NotImplementedError):
pc.equal(value, value)
for name in ('one', 'list', 'distinct'):
assert not hasattr(pc, name)
with pytest.raises(NotImplementedError):
Expand Down

0 comments on commit a1ef5e3

Please sign in to comment.