diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-02 06:27:20 +0900 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-02 06:27:20 +0900 |
commit | 5f80d6cd7bb3c2275de2fbad4ac6a24a15709b66 (patch) | |
tree | de6a1e887b65f413fc4abe547d72bbd71dc28d56 | |
parent | a335867bb42995e0537fa1ae13a955b618a98ab3 (diff) | |
parent | 3f65e746548fb6eebbe81bb98cb90937d891fb25 (diff) | |
download | cryptography-5f80d6cd7bb3c2275de2fbad4ac6a24a15709b66.tar.gz cryptography-5f80d6cd7bb3c2275de2fbad4ac6a24a15709b66.tar.bz2 cryptography-5f80d6cd7bb3c2275de2fbad4ac6a24a15709b66.zip |
Merge pull request #2464 from alex/more-aggressive
Provide more aggressive language about dropping 2.6
-rw-r--r-- | src/cryptography/__init__.py | 3 |
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 ) |