[DO NOT MERGE] test CI#289
Open
ca16 wants to merge 11 commits into
Open
Conversation
ca16
commented
May 6, 2026
| - uses: actions/setup-python@v2 | ||
| with: | ||
| python-version: '3.8' | ||
| python-version: '3.9' |
Contributor
Author
There was a problem hiding this comment.
This makes the test_word_predictors CI job pass. claude code says it was failing because 'pip can't find a pre-built wheel for your CI's Python 3.8'. And 3.9 is one of the versions we look at in the build CI job above so bumping here seems sort of okay?
ca16
commented
May 6, 2026
| 'smashed==0.1.10', | ||
| ] | ||
| vila_predictors = [ | ||
| 'timm==0.9.12', |
Contributor
Author
There was a problem hiding this comment.
This gets the test_vila_predictors CI job to fail with an error similar to the one we were hitting after the dropbox files disappeared.
ca16
commented
May 6, 2026
| ] | ||
| citation_links = [ | ||
| 'numpy', | ||
| 'numpy==1.24.4', |
Contributor
Author
There was a problem hiding this comment.
This gets us past errors in the build (3.9) job that look like this:
ERROR tests/test_utils/test_tools.py - ValueError: numpy.dtype size changed, may indicate binary incompatibility. Expected 96 from C header, got 88 from PyObject
claude code suggested it was a numpy version issue, and I picked this version because it's what's in the surviving task
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.
Trying to see if CI fails off the code in main. (and then some testing to see what might fix it)