Skip to content

Commit

Permalink
Adds missing numpy dtypes (#3330)
Browse files Browse the repository at this point in the history
Co-authored-by: Amanda Potts <ajpotts@users.noreply.github.com>
Co-authored-by: tess <48131946+stress-tess@users.noreply.github.com>
  • Loading branch information
3 people authored Jun 27, 2024
1 parent 714d587 commit e9023c6
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions arkouda/numpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
double,
e,
euler_gamma,
finfo,
float32,
float64,
floating,
half,
iinfo,
inf,
infty,
int8,
Expand All @@ -26,12 +29,18 @@
int64,
int_,
intc,
integer,
intp,
isscalar,
issubdtype,
longdouble,
longlong,
nan,
newaxis,
number,
pi,
short,
signedinteger,
single,
ubyte,
uint,
Expand All @@ -43,8 +52,8 @@
ulonglong,
ushort,
)
from ._numeric import floor

from ._numeric import floor

__all__ = [
"NAN",
Expand All @@ -56,16 +65,21 @@
"Infinity",
"NaN",
"bool_",
"number",
"byte",
"cdouble",
"clongdouble",
"csingle",
"double",
"e",
"euler_gamma",
"finfo",
"float32",
"float64",
"floating",
"floor",
"half",
"iinfo",
"inf",
"infty",
"int8",
Expand All @@ -74,12 +88,18 @@
"int64",
"int_",
"intc",
"integer",
"intp",
"isscalar",
"issubdtype",
"integer",
"longdouble",
"longlong",
"nan",
"newaxis",
"pi",
"short",
"signedinteger",
"single",
"ubyte",
"uint",
Expand All @@ -90,5 +110,4 @@
"uintc",
"ulonglong",
"ushort",
"floor",
]

0 comments on commit e9023c6

Please sign in to comment.