-
Notifications
You must be signed in to change notification settings - Fork 924
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
[REVIEW] Fix return type of MultiIndex.argsort
#5927
Conversation
Please update the changelog in order to start CI tests. View the gpuCI docs here. |
rerun tests |
3 similar comments
rerun tests |
rerun tests |
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-0.15 #5927 +/- ##
===============================================
+ Coverage 84.42% 84.44% +0.02%
===============================================
Files 80 80
Lines 13424 13425 +1
===============================================
+ Hits 11333 11337 +4
+ Misses 2091 2088 -3
Continue to review full report at Codecov.
|
Fixes: #5923
This PR fixes the return type of
MultiIndex.argsort
which previously is aNumericalColumn
and is now being changed to acupy.array
for consistency withIndex.argsort
/pd.Index.argsort
.