This repository was archived by the owner on Jul 31, 2026. It is now read-only.
fix(deps): widen attune-author and attune-rag pins to <1.0 - #90
Merged
Conversation
The pins `attune-author[ai]>=0.23,<0.24` and `attune-rag>=0.1.22,<0.3` were stale — current releases are author 0.25.0 and rag 0.8.0, both excluded by the old upper bounds. Installing attune-gui alongside current siblings fails to resolve (or silently downgrades rag), forcing a `--no-deps` workaround. Widen both to `<1.0`, matching this file's own convention for attune-help (>=0.10.0,<1.0) and the pre-1.0 fastapi/uvicorn pins. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
What
Two stale dependency pins prevented
attune-guifrom installing alongside current sibling releases:attune-author[ai]>=0.23,<0.24>=0.23,<1.0attune-rag>=0.1.22,<0.3>=0.1.22,<1.0Both upper bounds excluded the current releases, so an editable/dev install of the full attune family failed to resolve (or silently downgraded
attune-ragto 0.2.0), forcing a--no-depsworkaround. Widening both to<1.0matches this file's own convention forattune-help(>=0.10.0,<1.0) and the pre-1.0fastapi/uvicornpins.Verification
With the fix,
uv pip install -e attune_redis -e attune-help -e attune-author -e attune-rag -e attune-guiresolves cleanly (no--no-deps), retaining all five at local editable versions (author 0.25.0, rag 0.8.0, gui 0.9.1).🤖 Generated with Claude Code