chore: update Python dependencies - #127
Merged
Merged
Conversation
Co-authored-by: Greg Nazario <greg@gnazar.io>
gregnazario
marked this pull request as ready for review
August 12, 2026 22:29
Re-resolve lockfiles through Aikido Safe Chain, which enforces a 48h minimum package age. charset-normalizer 3.5.0 (published <48h ago) was blocked; downgrade to 3.4.9 so CI's Safe Chain step passes. Co-authored-by: Greg Nazario <greg@gnazar.io>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #127 +/- ##
=======================================
Coverage 93.20% 93.20%
=======================================
Files 56 56
Lines 5183 5183
=======================================
Hits 4831 4831
Misses 352 352
🚀 New features to boost your workflow:
|
This was referenced Aug 13, 2026
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
Update the root and v2
uv.lockfiles to the latest dependency versions allowed by their project constraints, validated against the repo's supply-chain policy (AikidoSec Safe Chain).Notable upgrades include aiohttp 3.14.3, coverage 7.15.4, requests 2.34.2, and v2 tooling updates such as mypy 2.3.0, pytest 9.1.1, and ruff 0.16.2.
Supply-chain compliance: The lockfiles were re-resolved through AikidoSec Safe Chain (the same tool CI runs via
.github/actions/python-setupand.github/workflows/v2-ci.yaml). Safe Chain scanned all packages against Aikido Intel — no malware found — and enforces a 48-hour minimum package age.charset-normalizer==3.5.0(published <48h ago) was blocked, so it is pinned to3.4.9(a transitive dependency ofrequests). A freshuv syncfor both projects now passes Safe Chain with no blocks.Test Plan
uv lock --check(root + v2) — passeduv sync --extra dev --reinstall --no-cachefor root + v2 — all packages clean, 0 blockedmake fmt— no changesmake lint— passedmake test— passed: 164 unit tests, 248 BDD scenariosmake -C v2 test— passed: 418 testsruff+mypy— passed; the unpinneduvx ty check src/reports four pre-existing diagnostics unrelated to this change (command is unchanged frommain, andtyis outside both lockfiles).Related Links