From c47a8503805c582cd7d78b3c6d70bfed305d0e5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 May 2026 15:15:08 +0000 Subject: [PATCH] Update paramiko requirement from <4.0,>=3.5 to >=3.5,<6.0 in /backend Updates the requirements on [paramiko](https://github.com/paramiko/paramiko) to permit the latest version. - [Commits](https://github.com/paramiko/paramiko/compare/3.5.0...5.0.0) --- updated-dependencies: - dependency-name: paramiko dependency-version: 5.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index fe72e7b..9d119f0 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -6,7 +6,7 @@ requires-python = ">=3.12" dependencies = [ "cryptography>=46.0.5,<47.0", "fastapi>=0.115,<1.0", - "paramiko>=3.5,<4.0", + "paramiko>=3.5,<6.0", "pydantic>=2.9,<3.0", "uvicorn[standard]>=0.32,<1.0", ]