Dependency update sweep: bump all deps to latest and re-lock - #2509
Closed
Derek Worthen (dworthen) with Copilot wants to merge 3 commits into
Closed
Dependency update sweep: bump all deps to latest and re-lock#2509Derek Worthen (dworthen) with Copilot wants to merge 3 commits into
Derek Worthen (dworthen) with Copilot wants to merge 3 commits into
Conversation
…lout Co-authored-by: dworthen <624870+dworthen@users.noreply.github.com>
Co-authored-by: dworthen <624870+dworthen@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update dependencies to the latest versions
Dependency update sweep: bump all deps to latest and re-lock
Aug 18, 2026
Derek Worthen (dworthen)
marked this pull request as ready for review
August 18, 2026 20:46
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.
Description
Automated dependency sweep raising all versions across the uv workspace to their latest allowed releases, re-locking, and repairing the resulting toolchain fallout. Release-owned lines (
graphrag-*==workspace pins,[project] versionfields) and the intentionally-heldgraspologic-native>=1.2,<1.3pin are left untouched.Related Issues
Automated dependency update sweep.
Proposed Changes
devgroup and everypackages/*/pyproject.toml. Notable:ruff 0.8→0.16,litellm 1.92.0→1.97.0,pydantic ~=2.10→~=2.13,typing-extensions ~=4.12→~=4.16,poethepoet 0.31→0.48,deptry 0.21→0.25,azure-cosmos ~=4.9→~=4.16,azure-storage-blob ~=12.24→~=12.30,azure-core ~=1.32→~=1.41,lancedb 0.34→0.37,json-repair 0.30→0.63,networkx 3.4→3.6,nltk 3.9→3.10,blis 1.0→1.3,textblob 0.18→0.20,tqdm 4.67→4.70,typer 0.16→0.27,mkdocs-material 9.5→9.7,coverage 7.6→7.15.uv.lockregenerated viauv lock --upgrade.RUF105(noqa-comments) — would rewrite 130+ existing# noqacomments to# ruff: ignore.RUF201(rule-codes-in-selectors) — would rewrite every rule code in the lint config to its long name.patchsemversioner entry.Checklist
Additional Notes
uv run poe checkis green (ruff format, ruff lint, pyright) anduv run poe test_unitpasses (317). Resolution/locking was performed against public PyPI because the Microsoft-internal index proxy is unreachable from the sandbox; it mirrors the same packages. A couple of tests require network-fetched data (NLTKwordnet, tiktoken encodings) unrelated to these bumps.