From db511140c97d678369cf3d8cf6a5e1ff56a01e1c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 22 May 2017 20:53:47 -0700 Subject: 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 --- src/cryptography/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') 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, + ) -- cgit v1.2.3