Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ executors:

python313:
docker:
- image: python:3.13.12
- image: python:3.13.13
resource_class: small

python314:
docker:
- image: python:3.14.3
- image: python:3.14.4
resource_class: small

python-integration:
docker:
- image: python:3.14.3
- image: python:3.14.4
environment:
GOOGLE_APPLICATION_CREDENTIALS: /key.json
resource_class: small
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ repos:
# hooks:
# - id: add-trailing-comma
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.19.1
rev: v1.20.0
hooks:
- &mypy
id: mypy
Expand Down
2 changes: 1 addition & 1 deletion storage/gcloud/aio/storage/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ async def _do_upload(
headers.update({'Content-Range': 'bytes */*'})
stream.seek(original_position)

await sleep( # type: ignore[func-returns-value]
await sleep( # type: ignore[func-returns-value,misc]
2. ** tries,
)
else:
Expand Down
Loading