chore(deps): raise dependency floors and sync lockfile#271
Merged
Conversation
Consolidates five Dependabot floor bumps that each touched pyproject.toml in isolation (#261 plotly, #262 seaborn, #263 ibis-framework, #264 pyarrow, #265 mypy). Three raised the lower bound above the locked version without updating uv.lock, which would leave the lockfile inconsistent with pyproject.toml after merge (CI only runs plain `uv sync`, never --locked, so the drift goes uncaught). Landing them together with a regenerated uv.lock keeps the lockfile consistent (`uv lock --locked` passes) and avoids four sequential Dependabot rebases on the same file. plotly >=5.0.0 -> >=6.7.0 (locked 6.3.1 -> 6.8.0) ibis-framework>=8.0.0 -> >=12.0.0 (locked 11.0.0 -> 12.0.0) pyarrow >=14.0.0 -> >=23.0.1 (locked 21.0.0 -> 24.0.0) seaborn >=0.13.0 -> >=0.13.2 (already locked at 0.13.2) mypy <2.0 -> <3.0 (locked 1.16.1 unchanged) Verified: uv sync, uv lock --locked, ruff check, ruff format --check all pass; plotly/ibis/pyarrow/seaborn import at the new versions. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This was referenced Jun 23, 2026
2 tasks
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.
Consolidates the five open Dependabot floor bumps into one PR with a regenerated
uv.lock.Why consolidate
Each Dependabot PR touched only
pyproject.toml. Three of them (#261, #263, #264) raised the lower bound above the currently-locked version without updatinguv.lock. CI runs plainuv sync(neveruv sync --locked), so the resulting lockfile drift would land onmainuncaught. Merging the five PRs individually also means four sequential rebases on the same file.Landing them together with a regenerated lockfile keeps
uv.lockconsistent and merges in one step.Changes
>=5.0.0→>=6.7.0>=8.0.0→>=12.0.0>=14.0.0→>=23.0.1>=0.13.0→>=0.13.2<2.0→<3.0Verification
uv lock --lockedpasses (lockfile consistent with pyproject.toml)uv sync --group dev,ruff check .,ruff format --check .all passSupersedes #261, #262, #263, #264, #265.
Ticket: none
🤖 Generated with Claude Code