Skip to content

Commit 4599fc7

Browse files
authored
Merge pull request #13074 from ichard26/vendoring-bumps-25.0
Vendoring bumps for 25.0
2 parents a194b45 + 79148f1 commit 4599fc7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+13778
-12495
lines changed

news/CacheControl.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade CacheControl to 0.14.1

news/idna.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade idna to 3.10

news/msgpack.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade msgpack to 1.1.0

news/packaging.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade packaging to 24.2

news/platformdirs.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade platformdirs to 4.3.6

news/rich.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade rich to 13.9.4

news/tomli.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade tomli to 2.2.1

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ drop = [
123123
"bin/",
124124
# interpreter and OS specific msgpack libs
125125
"msgpack/*.so",
126+
# optional accelerator extension libraries
127+
"*mypyc*.so",
128+
"tomli/*.so",
126129
# unneeded parts of setuptools
127130
"easy_install.py",
128131
"setuptools",

src/pip/_vendor/cachecontrol/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
77
Make it easy to import from cachecontrol without long namespaces.
88
"""
9+
910
__author__ = "Eric Larson"
1011
__email__ = "[email protected]"
11-
__version__ = "0.14.0"
12+
__version__ = "0.14.1"
1213

1314
from pip._vendor.cachecontrol.adapter import CacheControlAdapter
1415
from pip._vendor.cachecontrol.controller import CacheController

src/pip/_vendor/cachecontrol/adapter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def send(
7777

7878
return resp
7979

80-
def build_response(
80+
def build_response( # type: ignore[override]
8181
self,
8282
request: PreparedRequest,
8383
response: HTTPResponse,
@@ -143,7 +143,7 @@ def _update_chunk_length(self: HTTPResponse) -> None:
143143
_update_chunk_length, response
144144
)
145145

146-
resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call]
146+
resp: Response = super().build_response(request, response)
147147

148148
# See if we should invalidate the cache.
149149
if request.method in self.invalidating_methods and resp.ok:

0 commit comments

Comments
 (0)