From 13e3c4138c7d4a48573102775b1e2f9e48875578 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Wed, 13 May 2026 08:57:12 -0400 Subject: [PATCH] {Packaging} Bump paramiko upper limit to allow 5.x Paramiko has made two modest breaking change releases. Neither should impact azure-cli. Before bumping the upper limit to 6.0, you may need to address the addition of a format keyword arg to `write_private_key_file()`[0], but in 5.0 the behavior remains the same as prior releases. [0] https://docs.paramiko.org/en/5.0/api/keys.html#paramiko.pkey.PKey.write_private_key_file --- src/azure-cli/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 5759323910f..292bcf42720 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -145,7 +145,7 @@ 'javaproperties~=0.5.1', 'jsondiff~=2.0.0', 'packaging>=20.9', - 'paramiko>=2.0.8,<4.0.0', + 'paramiko>=2.0.8,<6.0.0', 'pycomposefile>=0.0.34', 'PyGithub~=1.38', 'PyNaCl~=1.6.2',