-
-
Notifications
You must be signed in to change notification settings - Fork 183
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
Soften up-to-date check #1848
Comments
Definitely this. It's a pity that we don't publish the |
We can also mark the release as "not latest" in GH? If that's what we are checking. |
Thinks it is using this logic conda-smithy/conda_smithy/configure_feedstock.py Lines 2191 to 2204 in 123be4e
We do mark them Do we need to check a different URL than we are using to pick up the repodata patching? |
I think we can use this variation: pkg = max(
[
f
for f in request.json()['files']
if "broken" not in f["labels"]
],
key=lambda x: VersionOrder(x['version']),
) |
Currently if
conda-smithy
is not on the latest version during a rerender, it will raise an errorHowever if the latest
conda-smithy
is marked broken, this behavior persists without taking into account the latest non-broken version is older than the latest version naively checkedThis can leave bot codes that rerender in a dysfunctional state. Meaning core needs to hunt down and fix these lines at the same time a broken conda-smithy emerges (the exact same time we may not have bandwidth to fix it for the same reason)
Some options we might consider here:
Please feel free to suggest more
The text was updated successfully, but these errors were encountered: