From 8e90f18550290cb96df81420833c398ad8726921 Mon Sep 17 00:00:00 2001 From: Amitheshkn Date: Mon, 29 Jun 2026 13:30:26 +0530 Subject: [PATCH] Raise cryptography upper bound to <50.0.0 (unblocks GHSA-537c fix) Signed-off-by: Amitheshkn --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8506afae0..c2bfaf38d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ certifi coverage==4.5.2 cryptography==42.0.8; python_full_version == '3.9.0' or python_full_version == '3.9.1' -cryptography>=3.2.1,<47.0.0; python_full_version != '3.9.0' and python_full_version != '3.9.1' +cryptography>=3.2.1,<50.0.0; python_full_version != '3.9.0' and python_full_version != '3.9.1' flake8>=3.6.0,<6 mock==2.0.0 pyOpenSSL>=17.5.0,<27.0.0 diff --git a/setup.py b/setup.py index 30ebab4d4..6645a47ec 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def open_relative(*path): requires = [ "certifi", "configparser==4.0.2 ; python_version < '3'", - "cryptography>=3.2.1,<47.0.0", + "cryptography>=3.2.1,<50.0.0", "pyOpenSSL>=17.5.0,<27.0.0", "python-dateutil>=2.5.3,<3.0.0", "pytz>=2016.10",