1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Thu, 12 Jan 2023 08:52:44 +0100
Description: Adapt to numpy 1.24
--- a/tests/test_connection.py
+++ b/tests/test_connection.py
@@ -14,10 +14,10 @@ class LoomConnectionTests(TestCase):
self.file.name,
np.random.random((5, 5)),
row_attrs={
- "key": np.fromiter(range(5), dtype=np.int)
+ "key": np.fromiter(range(5), dtype=int)
},
col_attrs={
- "key": np.fromiter(range(5), dtype=np.int)
+ "key": np.fromiter(range(5), dtype=int)
})
def tearDown(self) -> None:
|