We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 952164b commit 1afd1ccCopy full SHA for 1afd1cc
setup.py
@@ -40,6 +40,11 @@
40
extras = {
41
"bqstorage": [
42
"google-cloud-bigquery-storage >= 0.6.0, <2.0.0dev",
43
+ # Due to an issue in pip's dependency resolver, the `grpc` extra is not
44
+ # installed, even though `google-cloud-bigquery-storage` specifies it
45
+ # as `google-api-core[grpc]`. We thus need to explicitly specify it here.
46
+ # See: https://github.com/googleapis/python-bigquery/issues/83
47
+ "grpcio >= 1.8.2, < 2.0dev",
48
"pyarrow>=0.16.0, < 2.0dev",
49
],
50
"pandas": ["pandas>=0.17.1"],
0 commit comments