diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-22 20:53:47 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-05-22 20:53:47 -0700 |
commit | db511140c97d678369cf3d8cf6a5e1ff56a01e1c (patch) | |
tree | 6e625b97006458c1f22a8d82ae7b744e3e80a3db /src | |
parent | ba58e1faa99bcc58285596feac0214fd818e38d3 (diff) | |
download | cryptography-db511140c97d678369cf3d8cf6a5e1ff56a01e1c.tar.gz cryptography-db511140c97d678369cf3d8cf6a5e1ff56a01e1c.tar.bz2 cryptography-db511140c97d678369cf3d8cf6a5e1ff56a01e1c.zip |
Deprecate Python 3.3 support, with the intention of being removed in the next release (#3566)
* Deprecate Python 3.3 support, with the intention of being removed in the next release
* whoops
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cryptography/__init__.py b/src/cryptography/__init__.py index 940c66bc..a0c8d46d 100644 --- a/src/cryptography/__init__.py +++ b/src/cryptography/__init__.py @@ -25,3 +25,9 @@ if sys.version_info[:2] == (2, 6): "support for Python 2.6", DeprecationWarning ) +if sys.version_info[:2] == (3, 3): + warnings.warn( + "Python 3.3 support will be dropped in the next release of" + "cryptography. Please upgrade your Python.", + DeprecationWarning, + ) |