File tree 3 files changed +2
-8
lines changed
3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 51
51
# Keep the no-op bqstorage extra for backward compatibility.
52
52
# See: https://github.com/googleapis/python-bigquery/issues/757
53
53
"bqstorage" : [
54
- "google-cloud-bigquery-storage >= 2.0 .0, <3.0.0dev" ,
54
+ "google-cloud-bigquery-storage >= 2.6 .0, <3.0.0dev" ,
55
55
# Due to an issue in pip's dependency resolver, the `grpc` extra is not
56
56
# installed, even though `google-cloud-bigquery-storage` specifies it
57
57
# as `google-api-core[grpc]`. We thus need to explicitly specify it here.
Original file line number Diff line number Diff line change 8
8
db-dtypes==0.3.0
9
9
geopandas==0.9.0
10
10
google-api-core==1.31.5
11
- google-cloud-bigquery-storage==2.0 .0
11
+ google-cloud-bigquery-storage==2.6 .0
12
12
google-cloud-core==1.6.0
13
13
google-resumable-media==0.6.0
14
14
grpcio==1.47.0
Original file line number Diff line number Diff line change 59
59
60
60
@pytest .fixture
61
61
def table_read_options_kwarg ():
62
- # Create a BigQuery Storage table read options object with pyarrow compression
63
- # enabled if a recent-enough version of google-cloud-bigquery-storage dependency is
64
- # installed to support the compression.
65
- if not hasattr (bigquery_storage , "ArrowSerializationOptions" ):
66
- return {}
67
-
68
62
read_options = bigquery_storage .ReadSession .TableReadOptions (
69
63
arrow_serialization_options = bigquery_storage .ArrowSerializationOptions (
70
64
buffer_compression = bigquery_storage .ArrowSerializationOptions .CompressionCodec .LZ4_FRAME
You can’t perform that action at this time.
0 commit comments