Skip to content

Commit

Permalink
Merge branch 'master' into renovate/pyarrow-3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast committed Jan 28, 2021
2 parents 233166b + f0890ac commit ed74230
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 22 deletions.
2 changes: 1 addition & 1 deletion appengine/flexible/twilio/requirements.txt
@@ -1,3 +1,3 @@
Flask==1.1.2
gunicorn==20.0.4
twilio==6.51.0
twilio==6.51.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/bigquery/requirements.txt
@@ -1,2 +1,2 @@
google-cloud-bigquery==2.6.2
google-cloud-bigquery==2.7.0
Flask==1.1.2
16 changes: 10 additions & 6 deletions appengine/standard_python3/pubsub/templates/index.html
Expand Up @@ -21,14 +21,18 @@
<body>
<div>
<p>Print BEARER TOKENS:
{% for token in tokens: %}
<li>{{token}}</li>
{% endfor %}
<ul>
{% for token in tokens: %}
<li>{{token}}</li>
{% endfor %}
</ul>
</p>
<p>Print CLAIMS:
{% for claim in claims: %}
<li>{{claim}}</li>
{% endfor %}
<ul>
{% for claim in claims: %}
<li>{{claim}}</li>
{% endfor %}
</ul>
</p>
<p>Messages received by this instance:</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion codelabs/flex_and_vision/requirements.txt
@@ -1,6 +1,6 @@
Flask==1.1.2
gunicorn==20.0.4; python_version > '3.0'
gunicorn==19.10.0; python_version < '3.0'
google-cloud-vision==2.0.0
google-cloud-vision==2.1.0
google-cloud-storage==1.35.0
google-cloud-datastore==2.1.0
2 changes: 1 addition & 1 deletion data-science-onramp/data-ingestion/requirements.txt
Expand Up @@ -3,4 +3,4 @@
#google-auth-httplib2==0.0.3
google-cloud-storage==1.35.0
google-cloud-dataproc==2.2.0
google-cloud-bigquery==2.6.2
google-cloud-bigquery==2.7.0
2 changes: 1 addition & 1 deletion functions/imagemagick/requirements.txt
@@ -1,3 +1,3 @@
google-cloud-vision==2.0.0
google-cloud-vision==2.1.0
google-cloud-storage==1.35.0
Wand==0.6.5
2 changes: 1 addition & 1 deletion functions/ocr/app/requirements.txt
@@ -1,4 +1,4 @@
google-cloud-pubsub==2.2.0
google-cloud-storage==1.35.0
google-cloud-translate==3.0.2
google-cloud-vision==2.0.0
google-cloud-vision==2.1.0
9 changes: 6 additions & 3 deletions healthcare/api-client/v1/dicom/dicom_stores_test.py
Expand Up @@ -166,9 +166,12 @@ def test_pubsub_topic():


def test_CRUD_dicom_store(test_dataset, crud_dicom_store_id, capsys):
dicom_stores.create_dicom_store(
project_id, cloud_region, dataset_id, crud_dicom_store_id
)
@backoff.on_exception(backoff.expo, HttpError, max_time=60)
def create():
dicom_stores.create_dicom_store(
project_id, cloud_region, dataset_id, crud_dicom_store_id
)
create()

dicom_stores.get_dicom_store(
project_id, cloud_region, dataset_id, crud_dicom_store_id
Expand Down
2 changes: 1 addition & 1 deletion notebooks/requirements.txt
@@ -1,4 +1,4 @@
google-cloud-storage==1.35.0
google-cloud-bigquery[pandas,pyarrow]==2.6.2
google-cloud-bigquery[pandas,pyarrow]==2.7.0
matplotlib==3.1.2; python_version > '3.0'
matplotlib==2.2.5; python_version < '3.0'
2 changes: 1 addition & 1 deletion profiler/appengine/flexible/requirements.txt
@@ -1,3 +1,3 @@
Flask==1.1.2
gunicorn==20.0.4
google-cloud-profiler==2.0.4
google-cloud-profiler==2.0.5
2 changes: 1 addition & 1 deletion profiler/appengine/standard_python37/requirements.txt
@@ -1,2 +1,2 @@
Flask==1.1.2
google-cloud-profiler==2.0.4
google-cloud-profiler==2.0.5
2 changes: 1 addition & 1 deletion profiler/quickstart/requirements.txt
@@ -1 +1 @@
google-cloud-profiler==2.0.4
google-cloud-profiler==2.0.5
2 changes: 1 addition & 1 deletion run/image-processing/requirements.txt
Expand Up @@ -2,6 +2,6 @@ Flask==1.1.2
pytest==5.3.0; python_version > "3.0"
pytest==4.6.6; python_version < "3.0"
gunicorn==20.0.4
google-cloud-vision==2.0.0
google-cloud-vision==2.1.0
google-cloud-storage==1.35.0
Wand==0.6.5
2 changes: 1 addition & 1 deletion run/markdown-preview/renderer/requirements.txt
@@ -1,4 +1,4 @@
Flask==1.1.2
gunicorn==20.0.4
Markdown==3.3.3
bleach==3.2.2
bleach==3.2.3
2 changes: 1 addition & 1 deletion storage/s3-sdk/requirements.txt
@@ -1 +1 @@
boto3==1.16.59
boto3==1.16.61

0 comments on commit ed74230

Please sign in to comment.