From 80b25efa407f15c1c21323b7e512e2e051c0f5e3 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Thu, 22 Jun 2017 00:54:20 +0900 Subject: Fix invalid cast from ASN1_TIME to ASN1_GENERALIZEDTIME (#612) * Fix invalid cast from ASN1_TIME to ASN1_GENERALIZEDTIME, which ends up with an error with LibreSSL. * Require cryptography >= 1.9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 97aa209..4f30804 100755 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ if __name__ == "__main__": package_dir={"": "src"}, install_requires=[ # Fix cryptographyMinimum in tox.ini when changing this! - "cryptography>=1.7", + "cryptography>=1.9", "six>=1.5.2" ], ) -- cgit v1.2.1