2023-03-27 07:21:36 +00:00
|
|
|
From 0848826019cdcf3cf783095cb26b3fb394ae6d92 Mon Sep 17 00:00:00 2001
|
2023-01-13 00:35:03 +00:00
|
|
|
From: Johannes Kastl <kastl@b1-systems.de>
|
|
|
|
Date: Thu, 12 Jan 2023 11:12:53 +0100
|
|
|
|
Subject: [PATCH] remove python3.6 deprecation warning
|
|
|
|
|
|
|
|
Signed-off-by: Johannes Kastl <kastl@b1-systems.de>
|
|
|
|
---
|
2023-03-27 07:21:36 +00:00
|
|
|
src/cryptography/__init__.py | 9 ---------
|
|
|
|
1 file changed, 9 deletions(-)
|
2023-01-13 00:35:03 +00:00
|
|
|
|
|
|
|
diff --git a/src/cryptography/__init__.py b/src/cryptography/__init__.py
|
2023-03-27 07:21:36 +00:00
|
|
|
index 7f8a25c6e..91b624bf0 100644
|
2023-01-13 00:35:03 +00:00
|
|
|
--- a/src/cryptography/__init__.py
|
|
|
|
+++ b/src/cryptography/__init__.py
|
2023-03-27 07:21:36 +00:00
|
|
|
@@ -13,12 +13,3 @@ __all__ = [
|
2022-06-13 06:38:29 +00:00
|
|
|
"__author__",
|
|
|
|
"__copyright__",
|
|
|
|
]
|
|
|
|
-
|
|
|
|
-if sys.version_info[:2] == (3, 6):
|
|
|
|
- warnings.warn(
|
|
|
|
- "Python 3.6 is no longer supported by the Python core team. "
|
2023-01-13 00:35:03 +00:00
|
|
|
- "Therefore, support for it is deprecated in cryptography. The next "
|
2023-03-27 07:21:36 +00:00
|
|
|
- "release of cryptography will remove support for Python 3.6.",
|
2022-06-13 06:38:29 +00:00
|
|
|
- CryptographyDeprecationWarning,
|
|
|
|
- stacklevel=2,
|
|
|
|
- )
|
2023-01-13 00:35:03 +00:00
|
|
|
--
|
2023-03-27 07:21:36 +00:00
|
|
|
2.40.0
|
2023-01-13 00:35:03 +00:00
|
|
|
|