From dc23236f0a9c9ad4a0be35a4d03af92801839404 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Fri, 16 Jun 2023 17:05:22 +0200 Subject: [PATCH] Revert "Install cryptography only on linux platform" This reverts commit eb2c39ed2bc6a126ae7bdb6eab0457ebd6a32cfc. We temporarily turned off the cryptography requirement on Windows due to a CI instance that had an old, incompatible verison of pip. That CI instance has been upgraded so we no longer need the workaround. Signed-off-by: Gilles Peskine --- scripts/ci.requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/ci.requirements.txt b/scripts/ci.requirements.txt index 3ddc41705..ac9c25acf 100644 --- a/scripts/ci.requirements.txt +++ b/scripts/ci.requirements.txt @@ -14,5 +14,4 @@ mypy >= 0.780 # Install cryptography to avoid import-error reported by pylint. # What we really need is cryptography >= 35.0.0, which is only # available for Python >= 3.6. -cryptography >= 35.0.0; sys_platform == 'linux' and python_version >= '3.6' -cryptography; sys_platform == 'linux' and python_version < '3.6' +cryptography # >= 35.0.0