Add system certificate patch

This commit is contained in:
2025-10-02 14:52:40 +03:00
parent b8b22f3b16
commit 89a05bb6be
3 changed files with 22 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
diff --git a/src/requests/certs.py b/src/requests/certs.py
index be422c3e..9bfe1c80 100644
--- a/src/requests/certs.py
+++ b/src/requests/certs.py
@@ -11,7 +11,8 @@ If you are packaging Requests, e.g., for a Linux distribution or a managed
environment, you can change the definition of where() to return a separately
packaged CA bundle.
"""
-from certifi import where
+def where():
+ return "/etc/ssl/certs/ca-certificates.crt"
if __name__ == "__main__":
print(where())