Skip to content

Commit

Permalink
Change np.bool to np.bool_ - Daily Tests fix (#2103)
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis authored Oct 31, 2024
1 parent c18a63c commit 36742e2
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 36742e2

Please sign in to comment.