Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3aa0003

Browse files
committed
Merge branch 'workflows' of https://github.com/GoogleCloudPlatform/python-docs-samples into workflows
2 parents 9d92b04 + 1d82b72 commit 3aa0003

File tree

24 files changed

+47
-40
lines changed

24 files changed

+47
-40
lines changed

.github/CODEOWNERS

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @GoogleCloudPlatform/python-samples-owners
1111

1212
/auth/ @busunkim96 @GoogleCloudPlatform/python-samples-owners
13-
/automl/ @nnegrey @GoogleCloudPlatform/python-samples-owners
13+
/automl/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
1414
/bigquery/ @shollyman @GoogleCloudPlatform/python-samples-owners
1515
/bigquery_storage/ @shollyman @GoogleCloudPlatform/python-samples-owners
1616
/bigtable/ @billyjacobson @GoogleCloudPlatform/python-samples-owners
@@ -26,7 +26,7 @@
2626
/datalabeling/ @czahedi @GoogleCloudPlatform/python-samples-owners
2727
/dataproc/ @bradmiro @GoogleCloudPlatform/python-samples-owners
2828
/datastore/ @andrewsg @GoogleCloudPlatform/python-samples-owners
29-
/dialogflow/ @nnegrey @GoogleCloudPlatform/python-samples-owners
29+
/dialogflow/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
3030
/dlp/ @GoogleCloudPlatform/python-samples-owners
3131
/dns/ @michaelawyu @GoogleCloudPlatform/python-samples-owners
3232
/endpoints/ @DanSanche @GoogleCloudPlatform/python-samples-owners
@@ -40,7 +40,7 @@
4040
/jobs/ @GoogleCloudPlatform/python-samples-owners
4141
/kms/ @DanSanche @GoogleCloudPlatform/python-samples-owners
4242
/kubernetes_engine/ @GoogleCloudPlatform/python-samples-owners
43-
/language/ @nnegrey @GoogleCloudPlatform/python-samples-owners
43+
/language/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
4444
/logging/ @GoogleCloudPlatform/python-samples-owners
4545
/memorystore/ @GoogleCloudPlatform/python-samples-owners
4646
/ml_engine/ @alecglassford @GoogleCloudPlatform/python-samples-owners
@@ -52,13 +52,13 @@
5252
/run/ @averikitsch @GoogleCloudPlatform/python-samples-owners
5353
/scheduler/ @averikitsch @GoogleCloudPlatform/python-samples-owners
5454
/spanner/ @mmmarklu @GoogleCloudPlatform/python-samples-owners
55-
/speech/ @nnegrey @GoogleCloudPlatform/python-samples-owners
55+
/speech/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
5656
/storage/ @crwilcox @GoogleCloudPlatform/python-samples-owners
57-
/tables/automl/ @sirtorry @GoogleCloudPlatform/python-samples-owners
57+
/tables/automl/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
5858
/tasks/ @averikitsch @GoogleCloudPlatform/python-samples-owners
59-
/texttospeech/ @nnegrey @GoogleCloudPlatform/python-samples-owners
59+
/texttospeech/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
6060
/third_party/apache-airflow/ @leahecole @GoogleCloudPlatform/python-samples-owners
6161
/trace/ @dukeng @ziweizhao @GoogleCloudPlatform/python-samples-owners
62-
/translate/ @nnegrey @GoogleCloudPlatform/python-samples-owners
63-
/video/ @dizcology @GoogleCloudPlatform/python-samples-owners
64-
/vision/ @nnegrey @GoogleCloudPlatform/python-samples-owners
62+
/translate/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
63+
/video/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
64+
/vision/ @nnegrey @telpirion @sirtorry @GoogleCloudPlatform/python-samples-owners
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Flask==1.1.1
2-
google-cloud-storage==1.23.0
3-
gunicorn==20.0.4
2+
google-cloud-storage==1.26.0
3+
gunicorn==20.0.4; python_version > '3.0'
4+
gunicorn==19.10.0; python_version < '3.0'

asset/cloud-client/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-storage==1.23.0
2-
google-cloud-asset==0.7.0
1+
google-cloud-storage==1.26.0
2+
google-cloud-asset==0.8.0
33
google-cloud-resource-manager==0.30.0
44
google-cloud-pubsub==1.1.0

auth/cloud-client/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
google-cloud-storage==1.23.0
1+
google-cloud-storage==1.26.0

automl/cloud-client/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
google-cloud-automl==0.10.0
2-
google-cloud-storage==1.20.0
2+
google-cloud-storage==1.26.0
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Flask==1.1.1
2-
gunicorn==20.0.4
2+
gunicorn==20.0.4; python_version > '3.0'
3+
gunicorn==19.10.0; python_version < '3.0'
34
google-cloud-vision==0.41.0
4-
google-cloud-storage==1.23.0
5+
google-cloud-storage==1.26.0
56
google-cloud-datastore==1.10.0

dataproc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ grpcio==1.27.1
22
google-auth==1.11.2
33
google-auth-httplib2==0.0.3
44
google-cloud==0.34.0
5-
google-cloud-storage==1.23.0
5+
google-cloud-storage==1.26.0
66
google-cloud-dataproc==0.6.1

dlp/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
google-cloud-dlp==0.12.1
2-
google-cloud-storage==1.19.1
2+
google-cloud-storage==1.26.0
33
google-cloud-pubsub==1.0.0
44
google-cloud-datastore==1.9.0
55
google-cloud-bigquery==1.20.0

functions/http/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
google-cloud-storage==1.23.0
1+
google-cloud-storage==1.26.0
22
xmltodict==0.12.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
google-cloud-vision==0.39.0
2-
google-cloud-storage==1.19.1
2+
google-cloud-storage==1.26.0
33
Wand==0.5.9

functions/ocr/app/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
google-cloud-pubsub==1.0.0
2-
google-cloud-storage==1.19.1
2+
google-cloud-storage==1.26.0
33
google-cloud-translate==1.6.0
44
google-cloud-vision==0.39.0

healthcare/api-client/fhir/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ google-api-python-client==1.7.11
22
google-auth-httplib2==0.0.3
33
google-auth==1.11.2
44
google-cloud==0.34.0
5-
google-cloud-storage==1.19.1
5+
google-cloud-storage==1.26.0
66
requests==2.22.0

iot/api-client/gcs_file_to_device/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ google-auth==1.11.2
33
google-auth-httplib2==0.0.3
44
google-cloud-iot==0.3.0
55
google-cloud-pubsub==1.0.0
6-
google-cloud-storage==1.19.1
6+
google-cloud-storage==1.26.0
77
cryptography==2.8
88
paho-mqtt==1.4.0
99
pyjwt==1.7.1

notebooks/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
google-cloud-storage==1.23.0
1+
google-cloud-storage==1.26.0
22
google-cloud-bigquery[pandas,pyarrow]==1.23.1
3-
matplotlib==3.1.2
3+
matplotlib==3.1.2; python_version > '3.0'
4+
matplotlib==2.2.5; python_version < '3.0'

run/image-processing/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ pytest==5.3.0; python_version > "3.0"
33
pytest==4.6.6; python_version < "3.0"
44
gunicorn==19.9.0
55
google-cloud-vision==0.39.0
6-
google-cloud-storage==1.19.1
6+
google-cloud-storage==1.26.0
77
Wand==0.5.9

storage/cloud-client/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
google-cloud-pubsub==1.1.0
2-
google-cloud-storage==1.25.0
2+
google-cloud-storage==1.26.0

storage/signed_urls/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
google-cloud-storage==1.23.0
1+
google-cloud-storage==1.26.0
22
google-auth==1.11.2
33
six==1.13.0

testing/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ responses==0.10.6
1212
WebTest==2.0.34
1313
webapp2==2.5.2
1414
google-api-python-client==1.7.11
15-
google-cloud-core==1.0.3
15+
google-cloud-core==1.3.0
1616
gcp-devrel-py-tools==0.0.15
1717
flask==1.1.1
1818
websocket-client==0.56.0

translate/automl/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
google-cloud-translate==2.0.0
2-
google-cloud-storage==1.19.1
1+
google-cloud-translate==2.0.1
2+
google-cloud-storage==1.26.0
33
google-cloud-automl==0.10.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
google-cloud-translate==2.0.0
2-
google-cloud-storage==1.19.1
1+
google-cloud-translate==2.0.1
2+
google-cloud-storage==1.26.0

video/cloud-client/analyze/beta_snippets_test.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,15 @@ def test_annotation_to_storage_streaming(capsys, video_path, bucket):
101101
assert 'Storage' in out
102102

103103
# It takes a few seconds before the results show up on GCS.
104-
time.sleep(3)
104+
for _ in range(10):
105+
time.sleep(3)
106+
107+
blobs_iterator = bucket.list_blobs()
108+
blobs = [blob for blob in blobs_iterator]
109+
if len(blobs):
110+
break
105111

106112
# Confirm that one output blob had been written to GCS.
107-
blobs_iterator = bucket.list_blobs()
108-
blobs = [blob for blob in blobs_iterator]
109113
assert len(blobs) == 1
110114

111115

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
google-cloud-videointelligence==1.13.0
2-
google-cloud-storage==1.23.0
2+
google-cloud-storage==1.26.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
google-cloud-vision==0.41.0
2-
google-cloud-storage==1.19.1
2+
google-cloud-storage==1.26.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
google-cloud-vision==0.39.0
2-
google-cloud-storage==1.25.0
2+
google-cloud-storage==1.26.0

0 commit comments

Comments
 (0)