-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI/TST: Supply dtype to coo_matrix until scipy is fixed #40020
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
Conversation
sp_array = scipy.sparse.coo_matrix((data, (row, col))) | ||
# TODO: Remove dtype when scipy is fixed | ||
# https://github.com/scipy/scipy/issues/13585 | ||
sp_array = scipy.sparse.coo_matrix((data, (row, col)), dtype="int64") |
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.
maybe pass intp here?
going to backport as well, ping on green. |
Windows 3.7 np1.6 was successful, failures look unrelated. Running again. |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
@jreback - greenish Failing test is |
oh that's prob something we just merged cc @jbrockmendel |
thanks @rhshadrach |
@meeseeksdev backport 1.2.x |
…l scipy is fixed
will take a look |
… fixed (#40034) Co-authored-by: Richard Shadrach <[email protected]>
Fixes CI for Windows 3.7 np1.6; regression in scipy 1.6.1 (scipy/scipy#13585)
Alternative would be to pin build, wasn't sure which is prefered over the other. Will open tracking issue once the method is decided.