aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/__init__.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-11-01 11:34:04 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2015-11-01 11:34:04 -0500
commit3f65e746548fb6eebbe81bb98cb90937d891fb25 (patch)
treede6a1e887b65f413fc4abe547d72bbd71dc28d56 /src/cryptography/__init__.py
parenta335867bb42995e0537fa1ae13a955b618a98ab3 (diff)
downloadcryptography-3f65e746548fb6eebbe81bb98cb90937d891fb25.tar.gz
cryptography-3f65e746548fb6eebbe81bb98cb90937d891fb25.tar.bz2
cryptography-3f65e746548fb6eebbe81bb98cb90937d891fb25.zip
Provide more aggressive language about dropping 2.6
Diffstat (limited to 'src/cryptography/__init__.py')
-rw-r--r--src/cryptography/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptography/__init__.py b/src/cryptography/__init__.py
index 985ebd6f..940c66bc 100644
--- a/src/cryptography/__init__.py
+++ b/src/cryptography/__init__.py
@@ -21,6 +21,7 @@ __all__ = [
if sys.version_info[:2] == (2, 6):
warnings.warn(
"Python 2.6 is no longer supported by the Python core team, please "
- "upgrade your Python.",
+ "upgrade your Python. A future version of cryptography will drop "
+ "support for Python 2.6",
DeprecationWarning
)