fix(ci): list local [jax] extras explicitly in the 3.12 smoke install - #87
Merged
Merged
Conversation
pip 26.2.1's resolver treats autofit[jax] / autonerves[jax] as separate extra nodes and, when only ./PyAutoFit[optional] is named, walks their PyPI release history until resolution-too-deep — aborting early on wcwidth 0.2.1's corrupt wheel (multiple .dist-info directories). Broke main smoke on 2026-08-18 after the blackjax>=1.6.2 floor bump (PyAutoFit 1459734a4) deepened the graph; the Aug 15 green run used the same pip. Naming the local checkouts as the [jax] extra candidates pins those nodes and the resolve completes instantly (verified with pip 26.2.1 + Python 3.12 dry-run: local repro of the failure, then convergence to blackjax 1.6.2 / jax 0.10.2 / wcwidth 0.8.2 with this line). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Summary
Main smoke has failed since 2026-08-18 18:03 UTC (runs 32168904540 ×2 attempts) with:
That error is collateral, not the cause. pip 26.2.1's resolver treats
autofit[jax]/autonerves[jax]as separate extra nodes; with only./PyAutoFit[optional]named it walks their PyPI release history (resolution-too-deep) and dies on wcwidth 0.2.1's corrupt 2020 wheel while backtracking. Trigger: theblackjax>=1.6.2floor bump (PyAutoFit1459734a4, merged Aug 18 16:28) deepened the graph — the green Aug 15 run used the same pip 26.2.1.Fix
Name the local checkouts as the
[jax]extra candidates so those nodes resolve to the path installs instead of PyPI history:Verification (local, Python 3.12.10 + pip 26.2.1 — same as CI)
resolution-too-deep, so a wcwidth pin alone is not a fix._workspace_test) already avoid this by installing base packages before extras in a second pip call; only this repo does the single-shot install.This PR's own smoke run exercises the new install line end-to-end. Unblocks Heart readiness (
autofit_workspace_test: Smoke Tests failure on mainis the one RED reason) and the nightly-release gate.🤖 Generated with Claude Code