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

Commit

Permalink
Merge pull request #177 from scikit-hep/issue-176
Browse files Browse the repository at this point in the history
Issue 176
  • Loading branch information
jpivarski authored Aug 6, 2019
2 parents 0e8cac0 + f1bffc1 commit 635275c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions awkward/array/jagged.py
Original file line number Diff line number Diff line change
Expand Up @@ -1578,6 +1578,8 @@ def _argminmax(self, ismin):

# workaround for lack of general out[...,:1] support
nonempty = out.counts > 0
if self.offsetsaliased(out._starts, out._stops):
out.stops = out.stops.copy()
out.stops[nonempty] = out.starts[nonempty] + 1
return out

Expand Down
2 changes: 1 addition & 1 deletion awkward/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

__version__ = "0.12.5"
__version__ = "0.12.6"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 635275c

Please sign in to comment.