-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI: Uninstall nomkl & 32 bit Interval tests #59553
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
looks like the un-xfailed tests are still complaining on the pyiodide build. that has numpy 1.26; are other builds now using newer numpys? |
Yeah it looks like the closest equivalent 32 bit build is using numpy 2.1.0. I'll just xfail these tests for |
Merging to get the CI back to green |
Owee, I'm MrMeeseeks, Look at me. There seem to be a conflict, please backport manually. Here are approximate instructions:
And apply the correct labels and milestones. Congratulations — you did some good work! Hopefully your backport PR will be tested by the continuous integration and merged soon! Remember to remove the If these instructions are inaccurate, feel free to suggest an improvement. |
* Backport PR #59553: CI: Uninstall nomkl & 32 bit Interval tests * Update pandas/tests/indexes/interval/test_interval_tree.py * Update pandas/tests/indexes/interval/test_interval_tree.py * Update pandas/tests/indexing/interval/test_interval_new.py * Update pandas/tests/indexing/interval/test_interval_new.py
- name: Uninstall nomkl | ||
run: | | ||
if conda list nomkl | grep nomkl 1>/dev/null; then | ||
conda remove nomkl -y | ||
fi | ||
shell: bash -el {0} |
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 do you remember why this was needed? (I don't see anything in the PR description or discussion)
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.
I think some test failures during this time e.g. https://github.com/pandas-dev/pandas/actions/runs/10460069892/job/28965469092 were due to some transitive dependency pulling in nomkl
(I don't know why nomkl
caused these tests to fail but uninstalling the package allowed those tests to pass again)
No description provided.