From c2abfbe57392f5a7bb44e3aaf2c1786939e6281e Mon Sep 17 00:00:00 2001 From: julianz- Date: Tue, 23 Jan 2024 09:45:58 -0800 Subject: [PATCH] Update setup.py Need v42.0.0 or later of Cryptography as this restored the SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER constant which is required for possible fix per https://github.com/cherrypy/cheroot/issues/245 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e66ad6f5..a9315d048 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ def find_meta(meta): packages=find_packages(where="src"), package_dir={"": "src"}, install_requires=[ - "cryptography>=41.0.3,<42", + "cryptography>=42.0.0", ], extras_require={ "test": ["flaky", "pretend", "pytest>=3.0.1"],