Skip to content

Commit

Permalink
Merge pull request h5py#1931 from ArchangeGabriel/patch-1
Browse files Browse the repository at this point in the history
test_dtype: fix a numpy warning
  • Loading branch information
aragilar authored Jul 27, 2021
2 parents b578203 + 7b1a0b2 commit cd57b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h5py/tests/test_dtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def test_out_of_order_offsets(self):
self.assertArrayEqual(fd['data'], data)

def test_float_round_tripping(self):
dtypes = set(f for f in np.typeDict.values()
dtypes = set(f for f in np.sctypeDict.values()
if (np.issubdtype(f, np.floating) or
np.issubdtype(f, np.complexfloating)))

Expand Down

0 comments on commit cd57b9c

Please sign in to comment.