From 2531d24ac2e57e88e32775da42f6e1d5a5f25db3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:13:24 +0000 Subject: [PATCH] Update paramiko requirement from <4.0,>=3.5 to >=3.5,<5.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...4.0.0) --- updated-dependencies: - dependency-name: paramiko dependency-version: 4.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 af548d7..b83a5e0 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -7,7 +7,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,<5.0", "pydantic>=2.9,<3.0", "uvicorn[standard]>=0.32,<1.0", ]