summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPradyun Gedam <pradyunsg@users.noreply.github.com>2022-10-10 02:08:04 +0100
committerPradyun Gedam <pradyunsg@users.noreply.github.com>2022-10-14 11:01:21 +0100
commit1b7e5ef34f926f33fa7932239229220dd65eb7a6 (patch)
tree4d88b0479918f3a227aca04388fa58b0bfa0e2c1 /tools
parent2a0552ac61ee26df04e08e21943a1e36aa880db1 (diff)
downloadpip-1b7e5ef34f926f33fa7932239229220dd65eb7a6.tar.gz
Upgrade certifi to 2022.9.24
Diffstat (limited to 'tools')
-rw-r--r--tools/vendoring/patches/certifi.patch41
1 files changed, 32 insertions, 9 deletions
diff --git a/tools/vendoring/patches/certifi.patch b/tools/vendoring/patches/certifi.patch
index cc241a276..4f03c62fb 100644
--- a/tools/vendoring/patches/certifi.patch
+++ b/tools/vendoring/patches/certifi.patch
@@ -1,19 +1,42 @@
diff --git a/src/pip/_vendor/certifi/core.py b/src/pip/_vendor/certifi/core.py
-index 497d938d0..60ad982c6 100644
+index de028981b..c3e546604 100644
--- a/src/pip/_vendor/certifi/core.py
+++ b/src/pip/_vendor/certifi/core.py
-@@ -33,7 +33,7 @@ def where() -> str:
+@@ -33,13 +33,13 @@ def where() -> str:
+ # We also have to hold onto the actual context manager, because
+ # it will do the cleanup whenever it gets garbage collected, so
+ # we will also store that at the global level as well.
+- _CACERT_CTX = as_file(files("certifi").joinpath("cacert.pem"))
++ _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem"))
+ _CACERT_PATH = str(_CACERT_CTX.__enter__())
+
+ return _CACERT_PATH
+
+ def contents() -> str:
+- return files("certifi").joinpath("cacert.pem").read_text(encoding="ascii")
++ return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii")
+
+ elif sys.version_info >= (3, 7):
+
+@@ -68,13 +68,13 @@ def where() -> str:
# We also have to hold onto the actual context manager, because
# it will do the cleanup whenever it gets garbage collected, so
# we will also store that at the global level as well.
- _CACERT_CTX = get_path("certifi", "cacert.pem")
+ _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem")
_CACERT_PATH = str(_CACERT_CTX.__enter__())
-
+
return _CACERT_PATH
-@@ -65,4 +65,4 @@ def where() -> str:
-
-
- def contents() -> str:
-- return read_text("certifi", "cacert.pem", encoding="ascii")
-+ return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")
+
+ def contents() -> str:
+- return read_text("certifi", "cacert.pem", encoding="ascii")
++ return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")
+
+ else:
+ import os
+@@ -105,4 +105,4 @@ def where() -> str:
+ return os.path.join(f, "cacert.pem")
+
+ def contents() -> str:
+- return read_text("certifi", "cacert.pem", encoding="ascii")
++ return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")