CI Downgrade libopenblas to 0.3.33 to avoid regression on Windows - #34778
Merged
Conversation
With libopenblas 0.3.34 we see intermittent failures on windows. Let's see if using an older version makes them go away.
Member
Author
|
@lesteve want to have a look? It seems to pass/only fail less than 1 in 10 times. |
Member
|
AFAICT from this AI-generated script all the Windows CI build succeeded repo="scikit-learn/scikit-learn"
job="Windows x64 pymin_conda_forge_openblas"
gh api "repos/$repo/pulls/34778/commits" --paginate --jq '.[].sha' |
while read -r sha; do
gh api "repos/$repo/commits/$sha/check-runs" --paginate \
--jq ".check_runs[]
| select(.name == \"$job\")
| [\"$sha\", .status, (.conclusion // \"pending\"), .html_url]
| @tsv"
| cat
done Thanks for testing this! It's hard to know whether the OpenBLAS issue is related but empirically it seems to fix the problem. We'll keep an eye out for the OpenBLAS 0.3.35 release and hope the problem doesn't come back. |
lesteve
approved these changes
Aug 21, 2026
Member
|
One less issue to look at for my week on Triage (next week), really appreciated @betatim 🙏! |
Member
Author
|
🤝 |
prady0t
pushed a commit
to prady0t/scikit-learn
that referenced
this pull request
Sep 2, 2026
jeremiedbb
pushed a commit
to jeremiedbb/scikit-learn
that referenced
this pull request
Sep 8, 2026
jeremiedbb
pushed a commit
to jeremiedbb/scikit-learn
that referenced
this pull request
Sep 9, 2026
jeremiedbb
pushed a commit
to jeremiedbb/scikit-learn
that referenced
this pull request
Sep 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reference Issues/PRs
Fixes #34717
What does this implement/fix? Explain your changes.
With
libopenblas0.3.34 we see intermittent failures on windows. Let's see if using an older version makes them go away.We need to re-run the windows CI job a few times to see if the failure is really gone or not.
AI thinks OpenMathLib/OpenBLAS#5954 is related/the same problem.
AI usage disclosure
I used AI assistance for:
First, second, third, fourth, fifth, sixth, seventh, eight and ninth run succeeded. Commits with a red cross can be the result of stopping the CI before all jobs ran. The important thing is to check the status of the windows job.