Skip to content

Commit b074067

Browse files
authored
Removing googleapis-common-protos from deps in non-core packages. (#4098)
* Removing `googleapis-common-protos` from deps in non-`core` packages. Also - removing `grpcio` from non-`core` packages. - manually specifying the `grpcio` dep in core (rather than getting it from `googleapis-common-protos[grpc]`) * Making `grpc` an extra for `core`. * Adding `googleapis-common-protos` back to `videointelligence`.
1 parent 98bfd0c commit b074067

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/google-cloud-core/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252

5353
REQUIREMENTS = [
54-
'googleapis-common-protos[grpc] >= 1.5.3, < 2.0dev',
54+
'googleapis-common-protos >= 1.5.3, < 2.0dev',
5555
'protobuf >= 3.0.0',
5656
'google-auth >= 0.4.0, < 2.0.0dev',
5757
'requests >= 2.18.0, < 3.0.0dev',
@@ -61,6 +61,7 @@
6161

6262
EXTRAS_REQUIREMENTS = {
6363
':python_version<"3.2"': ['futures >= 3.0.0'],
64+
'grpc': ['grpcio >= 1.2.0, < 1.6dev'],
6465
}
6566

6667
setup(

0 commit comments

Comments
 (0)