Skip to content

Commit

Permalink
fix: export nan variants
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Oct 16, 2023
1 parent 2748c0c commit 40a2000
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_argmax.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("argmax",)
__all__ = ("argmax", "nanargmax")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
5 changes: 4 additions & 1 deletion src/awkward/operations/ak_argmin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("argmin",)
__all__ = (
"argmin",
"nanargmin",
)
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_max.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("max",)
__all__ = ("max", "nanmax")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_mean.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("mean",)
__all__ = ("mean", "nanmean")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_min.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("min",)
__all__ = ("min", "nanmin")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_prod.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("prod",)
__all__ = ("prod", "nanprod")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_std.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("std",)
__all__ = ("std", "nanstd")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_sum.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("sum",)
__all__ = ("sum", "nansum")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/operations/ak_var.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
__all__ = ("var",)
__all__ = ("var", "nanvar")
import awkward as ak
from awkward._behavior import behavior_of
from awkward._connect.numpy import UNSUPPORTED
Expand Down

0 comments on commit 40a2000

Please sign in to comment.