File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 35
35
uses : pypa/gh-action-pypi-publish@release/v1
36
36
37
37
- name : sign
38
- uses : sigstore/gh-action-sigstore-python@v2.1.1
38
+ uses : sigstore/gh-action-sigstore-python@v3.0.0
39
39
with :
40
40
inputs : ./dist/*.tar.gz ./dist/*.whl
41
41
release-signing-artifacts : true
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def send(
77
77
78
78
return resp
79
79
80
- def build_response (
80
+ def build_response ( # type: ignore[override]
81
81
self ,
82
82
request : PreparedRequest ,
83
83
response : HTTPResponse ,
@@ -143,7 +143,7 @@ def _update_chunk_length(self: HTTPResponse) -> None:
143
143
_update_chunk_length , response
144
144
)
145
145
146
- resp : Response = super ().build_response (request , response ) # type: ignore[no-untyped-call]
146
+ resp : Response = super ().build_response (request , response )
147
147
148
148
# See if we should invalidate the cache.
149
149
if request .method in self .invalidating_methods and resp .ok :
You can’t perform that action at this time.
0 commit comments