Skip to content

Commit 2d68c3c

Browse files
renovate-botgcf-owl-bot[bot]leahecole
authored
chore(deps): update dependency google-cloud-bigquery to v3.11.4 (GoogleCloudPlatform#10526)
* chore(deps): update dependency google-cloud-bigquery to v3.11.4 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * add retry --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Leah Cole <coleleah@google.com>
1 parent a11062c commit 2d68c3c

File tree

22 files changed

+67
-61
lines changed

22 files changed

+67
-61
lines changed

asset/snippets/quickstart_batchgeteffectiveiampolicy_test.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@
1616

1717
import os
1818

19+
from google.api_core import retry
20+
from google.api_core.exceptions import DeadlineExceeded
21+
1922
import quickstart_batchgeteffectiveiampolicy
2023

2124
PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"]
2225

2326

27+
@retry.Retry(retry.if_exception_type(DeadlineExceeded))
2428
def test_batch_get_effective_iam_policies(capsys):
2529
scope = f"projects/{PROJECT}"
2630
resource_names = [f"//cloudresourcemanager.googleapis.com/projects/{PROJECT}"]

asset/snippets/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ google-cloud-storage==2.9.0
22
google-cloud-asset==3.19.0
33
google-cloud-resource-manager==1.10.1
44
google-cloud-pubsub==2.17.0
5-
google-cloud-bigquery==3.11.0
5+
google-cloud-bigquery==3.11.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-bigquery==3.11.1
1+
google-cloud-bigquery==3.11.4
22
google-cloud-pubsub==2.17.1
33
pytest==7.3.2
44
mock==5.0.2

bigquery/bqml/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-bigquery[pandas,bqstorage]==3.11.0
1+
google-cloud-bigquery[pandas,bqstorage]==3.11.4
22
google-cloud-bigquery-storage==2.19.1
33
pandas==1.3.5; python_version == '3.7'
44
pandas==2.0.1; python_version > '3.7'

bigquery/datalab-migration/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
grpcio==1.56.0
2-
google-cloud-bigquery[pandas,pyarrow]==3.11.0
2+
google-cloud-bigquery[pandas,pyarrow]==3.11.4
33
# datalab has outdated dependencies that require google-api-core < 2
44
# The last version of google-cloud-bigquery-storage that supports google-api-core 1.x is 2.13.2
55
google-cloud-bigquery-storage==2.19.1

bigquery/pandas-gbq-migration/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-bigquery==3.11.0
1+
google-cloud-bigquery==3.11.4
22
google-cloud-bigquery-storage==2.19.1
33
pandas==1.1.5; python_version < '3.7'
44
pandas==1.3.5; python_version == '3.7'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
google-api-core==2.11.1
2-
google-cloud-bigquery==3.11.0
2+
google-cloud-bigquery==3.11.4
33
google-cloud-contact-center-insights==1.11.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pytest==7.2.0
2-
google-cloud-bigquery==3.11.0
2+
google-cloud-bigquery==3.11.4

dataflow/extensible-templates/requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
google-api-python-client==2.87.0
2-
google-cloud-bigquery==3.11.0
2+
google-cloud-bigquery==3.11.4
33
google-cloud-storage==2.9.0
44
pytest-xdist==3.3.0
55
pytest==7.0.1

dlp/snippets/deid.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def reidentify_text_with_fpe(
356356
"crypto_key": {
357357
"kms_wrapped": {"wrapped_key": wrapped_key, "crypto_key_name": key_name}
358358
},
359-
"common_alphabet": 'NUMERIC',
359+
"common_alphabet": "NUMERIC",
360360
"surrogate_info_type": surrogate_info_type,
361361
}
362362

@@ -376,9 +376,7 @@ def reidentify_text_with_fpe(
376376

377377
# Construct inspect configuration dictionary
378378
inspect_config = {
379-
"custom_info_types": [
380-
{"info_type": surrogate_info_type, "surrogate_type": {}}
381-
]
379+
"custom_info_types": [{"info_type": surrogate_info_type, "surrogate_type": {}}]
382380
}
383381

384382
# Construct the `item`.

0 commit comments

Comments
 (0)