diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-06-26 15:08:33 -1000 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-06-26 21:08:33 -0400 |
commit | e3a2fb209b905915874a2a46c4a11ee33c111dc7 (patch) | |
tree | 631c163537d0be4ab9c977fa515f2ae279b6b701 /src | |
parent | 62c3421a73053af5cf09d110f927632dd19f00aa (diff) | |
download | cryptography-e3a2fb209b905915874a2a46c4a11ee33c111dc7.tar.gz cryptography-e3a2fb209b905915874a2a46c4a11ee33c111dc7.tar.bz2 cryptography-e3a2fb209b905915874a2a46c4a11ee33c111dc7.zip |
remove python 3.3 from CI (#3729)
* remove python 3.3 from CI
* remove 3.3 everywhere, not just from CI
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/__init__.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cryptography/__init__.py b/src/cryptography/__init__.py index a0c8d46d..940c66bc 100644 --- a/src/cryptography/__init__.py +++ b/src/cryptography/__init__.py @@ -25,9 +25,3 @@ 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, - ) |