10000 CI: workaround numpydev bug by TomAugspurger · Pull Request #29433 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI: workaround numpydev bug #29433

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

Merged
merged 5 commits into from
Nov 6, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "CI: workaround numpydev bug"
This reverts commit 52c1f1b.
  • Loading branch information
TomAugspurger committed Nov 6, 2019
commit c6d9985db61a6c8f64394ddf2cef7717b18ff92c
3 changes: 0 additions & 3 deletions pandas/core/arrays/sparse/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -1572,9 +1572,6 @@ def make_sparse(arr, kind="block", fill_value=None, dtype=None, copy=False):
mask = splib.make_mask_object_ndarray(arr, fill_value)
else:
mask = arr != fill_value
# https://github.com/pandas-dev/pandas/issues/29432
# workaround numpydev issue
mask = mask.astype(bool)

length = len(arr)
if length != len(mask):
Expand Down
0