aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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,
+ )