-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG] Fix numpy-dev build #10132
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
[MRG] Fix numpy-dev build #10132
Conversation
Hmmm looks like we still have failures on numpy-dev 😞: |
I think this PR should be merged anyway, since legacy=True is the right thing to do. |
Today's cron job is not an accident and is due to sign='legacy' -> legacy=True in the np.set_printoptions arguments. Basically as of now, the tests are not even run because of this. With this PR, at least the tests are run. I agree it does not solve any failure and we will need to discuss with numpy to better understand how to deal with the failures. Despite the failures in the Cron job I would be in favour of merging this PR. |
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.
Indeed, today's cron build is not an accident and this PR makes cron build able to run. Please kindly forgive me for the naive comment above.
No worries ! Naive comments are good sometimes, in this case it show that I probably did not explain myself well enough. |
Going to merge this one. |
Good catch I reopened it. |
…rn#10132) https://github.com/numpy/numpy/pull/9332/files change sign='legacy' to legacy=True in the np.set_printoptions arguments.
For anyone following, the argument was changed to |
Thanks for following up. Yes we are using |
…rn#10132) https://github.com/numpy/numpy/pull/9332/files change sign='legacy' to legacy=True in the np.set_printoptions arguments.
https://github.com/numpy/numpy/pull/9332/files change
sign='legacy'
tolegacy=True
in the np.set_printoptions arguments.I have a Cron build that will run on my fork to double-check that the numpy-dev build pass:
https://travis-ci.org/lesteve/scikit-learn/builds/301861240.
Closes #10074.