From d07521963749c4118f8ad776694b6ffe41ca9ee5 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Tue, 16 Feb 2021 09:50:06 +0000 Subject: [PATCH] Pin RSA dependency for Py2 (#3697) --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 388c729d8..3cc631054 100755 --- a/setup.py +++ b/setup.py @@ -64,6 +64,8 @@ install_requires += [ "mock<=3.0.5; python_version < '3'", "more-itertools", "more-itertools==5.0.0; python_version < '3'", + # Indirect - Py2 works with 4.5, breaks with 4.7, but officially only supported by 4.0 + "rsa<=4.0; python_version < '3'", "setuptools", "setuptools==44.0.0; python_version < '3'", "zipp",