Skip to content

Commit 7fd98d7

Browse files
dependabot[bot]jku
andauthored
build(deps): bump requests from 2.33.1 to 2.34.0 (#1778)
Co-authored-by: Jussi Kukkonen <jkukkonen@google.com> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
1 parent c17bef8 commit 7fd98d7

5 files changed

Lines changed: 8 additions & 23 deletions

File tree

install/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -585,9 +585,9 @@ pyopenssl==26.2.0 \
585585
--hash=sha256:4f9d971bc5298b8bc1fab282803da04bf000c755d4ad9d99b52de2569ca19a70 \
586586
--hash=sha256:8c6fcecd1183a7fc897548dfe388b0cdb7f37e018200d8409cf33959dbe35387
587587
# via sigstore
588-
requests==2.32.5 \
589-
--hash=sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6 \
590-
--hash=sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf
588+
requests==2.34.0 \
589+
--hash=sha256:7d62fe92f50eb82c529b0916bb445afa1531a566fc8f35ffdc64446e771b856a \
590+
--hash=sha256:917520a21b767485ce7c588f4ebb917c436b24a31231b44228715eaeb5a52c60
591591
# via sigstore
592592
rfc3161-client==1.0.6 \
593593
--hash=sha256:0b3920334f7334ec3bb9c319d53a5d08cd43b6883f75e2669cfd869cd264d53a \

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ dev = [
6767
# NOTE(ww): ruff is under active development, so we pin conservatively here
6868
# and let Dependabot periodically perform this update.
6969
"ruff<0.15.16",
70-
"types-requests",
7170
"types-pyOpenSSL",
7271
"mkdocs-material[imaging]",
7372
"mkdocstrings-python",

sigstore/_internal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
subject to any stability guarantees.
2020
"""
2121

22-
from requests import __version__ as requests_version
22+
from requests import __version__ as requests_version # type: ignore[attr-defined]
2323

2424
from sigstore import __version__ as sigstore_version
2525

sigstore/_internal/rekor/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def post(
181181
"""
182182
data = {"entries": [expected_entry.model_dump(mode="json", by_alias=True)]}
183183

184-
resp: requests.Response = self.session.post(self.url, json=data)
184+
resp: requests.Response = self.session.post(self.url, json=data) # type: ignore[arg-type]
185185
try:
186186
resp.raise_for_status()
187187
except requests.HTTPError as http_error:

uv.lock

Lines changed: 3 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)