Adding fetch-depth
to actions/checkout
to fix CI
#120
Merged
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.
From this CI run, we get:
This is related to our "circular" pinning with
paper-qa
(wherepaper-qa
depends onfhaviary
, and we have a conveniencepaperqa
extra here). Note thatpaper-qa
currently pins ``fhaviary[llm]>=0.8.2`.#117 tried to fix this by downpinning
uv<0.5
, but that didn't work. So this PR looks closer, and realizes in this CI run's logs foruv sync --verbose
:This is incorrect! So this leads me to pypa/setuptools-scm#952, where I realized we ned to add
fetch-depth: 0
so the correct version offhaviary
gets used in CI.Someday after actions/checkout#1471 we can just use
fetch-tags: true
.