fix(deps): regenerate uv.lock for tauri-essentials extra#756
Merged
Conversation
#753 added the `tauri-essentials` extras group to pyproject.toml but didn't regenerate uv.lock, so `uv sync --locked` rejects the tree as inconsistent. This breaks every PR's CI (Python / Lint and Docs / Build) because pull_request runs against the merge commit and inherits main's drifted state. Re-running `uv lock` adds the resolved entry for tauri-essentials; no other resolutions change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
📦 TestPyPI package publishedpip install --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ buckaroo==0.13.5.dev25994343570or with uv: uv pip install --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ buckaroo==0.13.5.dev25994343570MCP server for Claude Codeclaude mcp add buckaroo-table -- uvx --from "buckaroo[mcp]==0.13.5.dev25994343570" --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ buckaroo-table📖 Docs preview🎨 Storybook preview |
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
tauri-essentialsextras group topyproject.tomlbut didn't regenerateuv.lock, souv sync --lockedrejects the tree as inconsistent.Python / LintandDocs / Build + Check Linksjobs currently fail becausepull_requestCI runs againstmerge(main, head)and inherits main's drifted state. Main's own post-merge run for build: add tauri-essentials extra for buckaroo.server runtime deps #753 (run25992822079) is failing for the same reason.uv lockagainst currentpyproject.tomladds the resolved entry fortauri-essentials(pandas + polars + tornado markers); no other resolutions change.Test plan
uv sync --locked --dev --no-install-projectpasses locally with uv 0.11.14 (same version CI uses)Python / Lintpasses on this PRDocs / Build + Check Linkspasses on this PR🤖 Generated with Claude Code