Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
from google.cloud.storage._experimental.asyncio.async_abstract_object_stream import (
_AsyncAbstractObjectStream,
)
from google.cloud.storage._experimental.asyncio.bidi_async import AsyncBidiRpc

from google.api_core.bidi_async import AsyncBidiRpc


class _AsyncReadObjectStream(_AsyncAbstractObjectStream):
Expand Down
230 changes: 0 additions & 230 deletions google/cloud/storage/_experimental/asyncio/bidi_async.py

This file was deleted.

80 changes: 0 additions & 80 deletions google/cloud/storage/_experimental/asyncio/bidi_base.py

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"google-auth >= 2.26.1, < 3.0.0",
"google-api-core >= 2.15.0, < 3.0.0",
"google-api-core >= 2.27.0, < 3.0.0",
"google-cloud-core >= 2.4.2, < 3.0.0",
# The dependency "google-resumable-media" is no longer used. However, the
# dependency is still included here to accommodate users who may be
Expand Down
2 changes: 1 addition & 1 deletion testing/constraints-3.9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0",
# Then this file should have google-cloud-foo==1.14.0
google-auth==2.26.1
google-api-core==2.15.0
google-api-core>=2.15.0
google-cloud-core==2.4.2
google-resumable-media==2.7.2
requests==2.22.0
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/asyncio/test_bidi_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
except ImportError: # pragma: NO COVER
pytest.skip("No GRPC", allow_module_level=True)

from google.cloud.storage._experimental.asyncio import bidi_async
from google.api_core import bidi_async
from google.api_core import exceptions


Expand Down