From 3b83fc21eb1abe1b53efe5f6920885676158be5c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 26 Aug 2016 22:11:50 -0400 Subject: Refs #3002 -- clearly document that OpenSSL 1.0 support will be removed in the next release. (#3113) --- src/cryptography/hazmat/bindings/openssl/binding.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/cryptography/hazmat/bindings/openssl/binding.py b/src/cryptography/hazmat/bindings/openssl/binding.py index 2b9dca5c..e788502d 100644 --- a/src/cryptography/hazmat/bindings/openssl/binding.py +++ b/src/cryptography/hazmat/bindings/openssl/binding.py @@ -219,9 +219,9 @@ class Binding(object): def _verify_openssl_version(version): if version < 0x10001000: warnings.warn( - "OpenSSL versions less than 1.0.1 are no longer supported by the " - "OpenSSL project, please upgrade. A future version of " - "cryptography will drop support for these versions of OpenSSL.", + "OpenSSL version 1.0.0 is no longer supported by the OpenSSL " + "project, please upgrade. The next version of cryptography will " + "drop support for it.", DeprecationWarning ) -- cgit v1.2.3