Skip to content

Commit

Permalink
Change np.bool to np.bool_ - Daily Tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Oct 30, 2024
1 parent c18a63c commit dd4ab84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/tests/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ def test_group_metadata_backwards_compat(self):
group.meta["numpy_float64"] = np.float64(3.14)
group.meta["numpy_bytes"] = np.bytes_("hello")
group.meta["numpy_str"] = np.str_("hello")
group.meta["numpy_bool"] = np.bool(False)
group.meta["numpy_bool"] = np.bool_(False)

# lists/tuples
group.meta["list_int"] = [7]
Expand Down

0 comments on commit dd4ab84

Please sign in to comment.