workaround; pin cryptography below 43

This commit is contained in:
meejah 2024-08-08 16:26:14 -06:00
parent 4d6fcc8ad1
commit 18ba8ef657

View File

@ -62,7 +62,8 @@ install_requires = [
# Twisted[conch] also depends on cryptography and Twisted[tls]
# transitively depends on cryptography. So it's anyone's guess what
# version of cryptography will *really* be installed.
"cryptography >= 2.6",
# * cryptography 43.0.0 makes __provides__ read-only; see ticket 4300
"cryptography >= 2.6, < 43.0.0",
# * Used for custom HTTPS validation
"pyOpenSSL >= 23.2.0",