From dd4ab84fcd6eb60e0cbd37f08f910b66cf628b72 Mon Sep 17 00:00:00 2001 From: Agisilaos Kounelis Date: Wed, 30 Oct 2024 12:33:14 +0200 Subject: [PATCH] Change np.bool to np.bool_ - Daily Tests fix --- tiledb/tests/test_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiledb/tests/test_group.py b/tiledb/tests/test_group.py index 4fe3536b0e..000120d879 100644 --- a/tiledb/tests/test_group.py +++ b/tiledb/tests/test_group.py @@ -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]