fix: raise cli mcp cryptography ceiling to match agent-os and agent-mesh - #3736
Closed
fei (feiiiiii5) wants to merge 1 commit into
Closed
fix: raise cli mcp cryptography ceiling to match agent-os and agent-mesh#3736fei (feiiiiii5) wants to merge 1 commit into
fei (feiiiiii5) wants to merge 1 commit into
Conversation
agent-os and agent-mesh now require cryptography>=50.0.0,<51.0, but the toolkit-cli mcp extra still capped it below 49.0, so installing the CLI with the mcp extra alongside agent-os or agent-mesh fails pip resolution. Signed-off-by: fei <204683769+feiiiiii5@users.noreply.github.com>
fei (feiiiiii5)
requested review from
MohammadHaroonAbuomar and
liamcrumm
as code owners
August 15, 2026 12:34
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
|
Welcome to the Agent Governance Toolkit! Thanks for your first pull request. |
PR Review Summary
Verdict: AI review comments are untrusted advisory output. The summary reports workflow-generated completion status only, not model-authored pass/fail claims. |
|
🔴 Contributor Check: HIGH
Automated check by AGT Contributor Check. |
Author
|
Closing after two weeks without review to keep the queue tidy — the branch stays up, and I'm happy to revive this if it becomes relevant. Thanks! |
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
The toolkit-cli
mcpextra still pinnedcryptography>=46.0.7,<49.0while agent-os and agent-mesh were raised tocryptography>=50.0.0,<51.0(#3615, #3621). Installing the CLI with the mcp extra in the same environment as agent-os or agent-mesh fails pip resolution: no cryptography version satisfies both ranges.Fixes #3651.
Fix
Raised the cli
mcpextra range tocryptography>=50.0.0,<51.0, matching the other packages.Validation
DCO signoff included.