Skip to content

Commit

Permalink
test: correct numpy version skip
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Jan 13, 2025
1 parent 0151e90 commit 2c359ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def test_column_aggregation(t20s_dset):
assert not isinstance(n.mean(t20s_dset["uid"]), n.ndarray)


@pytest.mark.skipif(n.__version__.startswith("1.15."), reason="works with newer numpy versions, use case is limited")
@pytest.mark.skipif(n.__version__.startswith("1.17."), reason="works with newer numpy versions, use case is limited")
def test_row_array_type(t20s_dset):
rowarr = n.array(t20s_dset.rows())
assert isinstance(rowarr[0], Row)
Expand Down

0 comments on commit 2c359ee

Please sign in to comment.