fix: point qodev-apollo-api source at ../apollo-api - #6
Merged
Conversation
The [tool.uv.sources] path pinned qodev-apollo-api to ../../libs/apollo, which no longer exists — a fresh `uv sync` (or a clean dev checkout) failed to resolve the local dependency. The API source lives at ../apollo-api (sibling in this monorepo). Repointing there lets uv build the local 0.2.2 API instead of resolving a stale published 0.1.3, and unblocks `uv sync`. CI/publish are unaffected (they set UV_NO_SOURCES=1 and pull from PyPI). Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Problem
[tool.uv.sources]pinnedqodev-apollo-apito../../libs/apollo, a path that no longer exists. A freshuv sync(or clean dev checkout) fails to resolve the local dependency, and the installed copy had drifted to a stale published 0.1.3 while the source repo at../apollo-apiis 0.2.2.Fix
Repoint the source at
../apollo-api(its sibling in this monorepo).uv syncnow builds the local 0.2.2 API and resolves cleanly.pyproject.toml:path = "../apollo-api"uv.lock: regenerated (apollo-api 0.1.3 → 0.2.2, path updated; cli version caught up 0.1.0 → 1.0.0)CI and publish are unaffected — both set
UV_NO_SOURCES=1and pull the API from PyPI.🤖 Generated with Claude Code