chore(mise): make pipx-via-uvx routing explicit#201
Merged
Conversation
mise's pipx backend auto-falls-back to uvx, but only when uv is itself a mise-managed tool — system-PATH uv is invisible to the detection logic (jdx/mise#7477). The previous comment claiming "automatically uses uvx if uv is installed" obscured this caveat. - Rewrite the comment to describe the actual behavior and link the upstream issue. - Add `pipx.uvx = true` under [settings] so the routing is explicit and survives any future change to the auto-detection heuristic. Verified locally: with uv mise-managed and the setting present, `mise install pipx:pre-commit` succeeds without MISE_PIPX_UVX env override. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
| Status | Count |
|---|---|
| 🔍 Total | 128 |
| ✅ Successful | 122 |
| ⏳ Timeouts | 0 |
| 🔀 Redirected | 0 |
| 👻 Excluded | 5 |
| ❓ Unknown | 0 |
| 🚫 Errors | 1 |
Errors per input
Errors in exact_dot_claude/docs/prds/daily-catchup.PRD.md
- [509] https://date-fns.org/ | Failed: Network error: Unknown status code
Full Github Actions output
Please fix the broken links before merging.
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
pipx.uvx = trueunder[settings]to make the routing explicit and version-independent.Why
PR #199 surfaced this when
mise install pipx:pre-commitfailed on a host where uv was on\$PATHbut not mise-managed. The fallback silently triedpipx, which wasn't installed → install failed. After PR #199 addeduv = "latest"as a mise-managed tool, the fallback worked — but the behavior is still implicit and would break again if uv ever stops being mise-managed.Test plan
mise settings get pipx.uvxreturnstrueafter applymise install pipx:pre-commitsucceeds withoutMISE_PIPX_UVX=trueenv override🤖 Generated with Claude Code