From f31b1f54ca846926aaedd769ed8dca7e9836b6c2 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Wed, 21 Feb 2024 10:31:38 -0500 Subject: [PATCH] feat: setup.py: remove rsa requirement The rsa library is slower and not as well-maintained as the cryptography library. Now that we require the cryptography library, drop the hard requirement on the rsa library. --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index b5c7e627c..4810c6827 100644 --- a/setup.py +++ b/setup.py @@ -22,9 +22,6 @@ DEPENDENCIES = ( "cachetools>=2.0.0,<6.0", "pyasn1-modules>=0.2.1", - # rsa==4.5 is the last version to support 2.7 - # https://github.com/sybrenstuvel/python-rsa/issues/152#issuecomment-643470233 - "rsa>=3.1.4,<5", ) extras = {