Skip to content
This repository was archived by the owner on Jun 21, 2022. It is now read-only.

Commit 98fb6b2

Browse files
committed
fixes #40
1 parent af13d77 commit 98fb6b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

uproot/interp/numerical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def __repr__(self):
8686

8787
return "asdtype(" + ", ".join(args) + ")"
8888

89-
_byteorder_transform = {"!": "B", ">": "B", "<": "L", "=": "B" if numpy.dtype(">f8").isnative else "L"}
89+
_byteorder_transform = {"!": "B", ">": "B", "<": "L", "|": "L", "=": "B" if numpy.dtype(">f8").isnative else "L"}
9090

9191
@property
9292
def identifier(self):

uproot/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
import re
3232

33-
__version__ = "2.5.11"
33+
__version__ = "2.5.12"
3434
version = __version__
3535
version_info = tuple(re.split(r"[-\.]", __version__))
3636

0 commit comments

Comments
 (0)