Skip to content

Commit

Permalink
Fixed bug with Numpy 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ariostas committed Dec 19, 2024
1 parent 6d39cc5 commit 1f8d1c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/uproot/models/RNTuple.py
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,7 @@ def read_col_page(self, ncol, cluster_i):
res = min_value + res.astype(numpy.float32) * (max_value - min_value) / (
(1 << nbits) - 1
)
res = res.astype(numpy.float32)
return res

def arrays(
Expand Down

0 comments on commit 1f8d1c8

Please sign in to comment.