aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/__init__.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-05-22 20:53:47 -0700
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-05-22 20:53:47 -0700
commitdb511140c97d678369cf3d8cf6a5e1ff56a01e1c (patch)
tree6e625b97006458c1f22a8d82ae7b744e3e80a3db /src/cryptography/__init__.py
parentba58e1faa99bcc58285596feac0214fd818e38d3 (diff)
downloadcryptography-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/cryptography/__init__.py')
-rw-r--r--src/cryptography/__init__.py6
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,
+ )