From 5dcfd32a11d9e1f18ad89bc665437add085a1127 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 30 Apr 2025 11:47:35 -0700 Subject: [PATCH] remove unneeded cryptography req (#10276) since https://github.com/certbot/certbot/pull/10130, we depend on much newer versions of cryptography so this restraint is no longer needed --- tools/pinning/current/pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tools/pinning/current/pyproject.toml b/tools/pinning/current/pyproject.toml index 21af67562..cad342ff4 100644 --- a/tools/pinning/current/pyproject.toml +++ b/tools/pinning/current/pyproject.toml @@ -63,11 +63,6 @@ pylint = "3.3.3" # compatible version here. mypy = "1.9.0" -# Bug in poetry, where still installes yanked versions from pypi (source: https://github.com/python-poetry/poetry/issues/2453) -# this version of cryptography introduced a security vulnrability. -# Making sure that it would not get installed (Fixing https://github.com/certbot/certbot/issues/9336) -cryptography = "!= 37.0.3" - # Branch 4.x of tox introduces backward incompatibility changes, so require a newer # version of tox to keep deterministic builds. tox = ">=4"