-
Notifications
You must be signed in to change notification settings - Fork 156
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
Change _GeoSeriesUtility._from_data(index=) default to None #1400
Conversation
/merge |
There is one more (potential) cudf bug that I am diagnosing to get the CI to green. |
rapidsai/cudf#16193 should unblock the remaining failure here |
The offset column of a nested empty list column may be empty as discussed in #16164. `ListColumn.memory_usage` assumed that this column was non-empty Unblocks rapidsai/cuspatial#1400 Authors: - Matthew Roeschke (https://github.com/mroeschke) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Lawrence Mitchell (https://github.com/wence-) URL: #16193
@mroeschke There are a few more CI failures here like:
Can you investigate? I think this PR might be blocking #1402. |
# TODO: Remove geopandas.dataset usage in cuspatial_api_examples.ipynb | ||
test_notebooks: | ||
common: | ||
- output_types: [conda, requirements, pyproject] | ||
packages: | ||
- geopandas<1 |
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.
@mroeschke Can you open an issue documenting the geopandas<1
pinning and whatever work items need to be done there?
I am going to merge this once CI passes to unblock #1402 since it is blocking other RAPIDS-CCCL work, just want to be sure that this is visible and has a corresponding issue.
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.
Sure thing opened #1403
/merge |
Description
An upstream change in cudf uncovered a bug in
_GeoSeriesUtility._from_data
whereFalse
was being passed tocudf.Series(index=)
which is an invalid value. The only validindex
values are an actualcudf.Index
orNone
, so setting toNone
as a more appropriate default valueAlso updates the location of
assert_eq
which moved in rapidsai/cudf#16063Checklist