-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
CLN: unify some fused types #43824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLN: unify some fused types #43824
Conversation
@@ -20,15 +20,14 @@ from numpy cimport ( | |||
cnp.import_array() | |||
|
|||
|
|||
cdef extern from "src/headers/cmath" namespace "std": | |||
cdef extern from "../src/headers/cmath" namespace "std": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this added ../
, these changes made the build fail for me locally due to not being able to find this file. Not sure why importing from dtypes
instead of util
would cause this to happen, but importing from ../
is now consistent with the import on L33
@jbrockmendel if comments. |
LGTM |
Change summary:
numeric
->numeric_t
asof_t
numeric
+object
->numeric_object_t
algos_t
,join_t
,reshape_t
i64 + u64 + f32 + f64
->iu_64_floating_t
(don't love this name, suggestions welcome)groupby_t
iu_64_floating_t
+object
->iu_64_floating_obj_t
rank_t
(which was renamed tonumeric_object_t
in CLN: share rank_t fused type #43789, so it replacesnumeric_object_t
in this pr)