8000 Merge branch 'master' into renovate/docker-python-3.x · runck014/python-docs-samples@b882aad · GitHub
[go: up one dir, main page]

Skip to content

Commit b882aad

Browse files
authored
Merge branch 'master' into renovate/docker-python-3.x
2 parents 9d05319 + f54f4f3 commit b882aad

File tree

103 files changed

+2275
-5826
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+2275
-5826
lines changed

.github/header-checker-lint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{"allowedCopyrightHolders": [],
2+
"allowedLicenses": ["Apache-2.0", "MIT", "BSD-3"],
3+
"ignoreFiles": ["requirements.txt", "requirements-test.txt"],
4+
"sourceFileExtensions": [
5+
"ts",
6+
"js",
7+
"java",
8+
"sh",
9+
"Dockerfile",
10+
"yaml",
11+
"py",
12+
"html",
13+
"txt"
14+
]
15+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==1.1.2
22
Flask-SQLAlchemy==2.4.4
33
gunicorn==20.0.4
4-
PyMySQL==0.10.1
4+
PyMySQL==1.0.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==1.1.2
2-
google-cloud-datastore==2.0.1
2+
google-cloud-datastore==2.1.0
33
gunicorn==20.0.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==1.1.2
22
gunicorn==20.0.4
3-
numpy==1.19.4
3+
numpy==1.19.5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==1.1.2
2-
google-cloud-pubsub==1.7.0
2+
google-cloud-pubsub==2.2.0
33
gunicorn==20.0.4
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Flask==1.1.2
22
gunicorn==20.0.4
33
imageio==2.9.0
4-
numpy==1.19.4
5-
pillow==8.0.1
4+
numpy==1.19.5
5+
pillow==8.1.0
66
scipy==1.5.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
PyMySQL==0.10.1
1+
PyMySQL==0.10.1; python_version < '3.0' # needs to stay under 1.0.0 for Python 2 support
22
Django==1.11.29; python_version < '3.0' # needs to stay under 2.0.0 for Python 2 support
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Flask==1.1.2
22
pyjwt==1.7.1; python_version < '3.0'
3-
flask-cors==3.0.9
3+
flask-cors==3.0.10
44
google-auth==1.24.0
55
requests==2.25.1
66
requests-toolbelt==0.9.1

appengine/standard/i18n/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Move into this project directory and invoke the following command:
6060

6161
This command creates a `locales/messages.pot` file in the `locales`
6262
directory which contains all the string found in your Python code and
63-
Jija2 tempaltes.
63+
Jinja2 templates.
6464

6565
Since the babel configration file `main.mapping` contains a reference
6666
to `jinja2.ext.babel_extract` helper function which is provided by
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Flask==1.1.2
2-
google-cloud-datastore==1.15.3
2+
google-cloud-datastore==2.1.0; python_version >= "3.0"
3+
google-cloud-datastore==1.15.3; python_version < "3.0"
34
google-cloud-tasks==2.0.0 ; python_version >= "3.0"
45
google-cloud-tasks==1.5.0 ; python_version < "3.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
google-cloud-bigquery==2.6.1
1+
google-cloud-bigquery==2.6.2
22
Flask==1.1.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Flask==1.1.2
2-
google-cloud-datastore==2.0.1
2+
google-cloud-datastore==2.1.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==1.1.2
2-
google-cloud-datastore==2.0.1
2+
google-cloud-datastore==2.1.0
33
google-auth==1.24.0
44
requests==2.25.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==1.1.2
2-
google-cloud-datastore==2.0.1
2+
google-cloud-datastore==2.1.0
33
google-auth==1.24.0
44
requests==2.25.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
flask==1.1.2
22
# psycopg2==2.8.4
33
psycopg2-binary==2.8.6 # you will need either the binary or the regular - for more info see http://initd.org/psycopg/docs/install.html
4-
PyMySQL==0.10.1
4+
PyMySQL==1.0.2
55
SQLAlchemy==1.3.22
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django==3.1.4
2-
PyMySQL==0.10.1
1+
Django==3.1.5
2+
PyMySQL==1.0.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==1.1.2
22
google-api-python-client==1.12.8
33
google-auth==1.24.0
4-
google-cloud-pubsub==1.7.0
4+
google-cloud-pubsub==2.2.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
google-cloud-spanner==2.1.0
1+
google-cloud-spanner==3.0.0
22
Flask==1.1.2

bigquery/bqml/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
google-cloud-bigquery[pandas,bqstorage]==2.6.1
1+
google-cloud-bigquery[pandas,bqstorage]==2.6.2
22
google-cloud-bigquery-storage==2.1.0
3-
pandas==1.1.5
3+
pandas==1.1.5; python_version < '3.7'
4+
pandas==1.2.0; python_version > '3.6'
45
pyarrow==2.0.0
56
flaky==3.7.0
67
mock==4.0.3

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.34.0
2-
google-cloud-bigquery[pandas,pyarrow]==2.6.1
2+
google-cloud-bigquery[pandas,pyarrow]==2.6.2
33
google-cloud-bigquery-storage==2.1.0
44
datalab==1.2.0
55
ipython==7.18.1; python_version > '3.6'
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
google-cloud-bigquery==2.6.1
1+
google-cloud-bigquery==2.6.2
22
google-cloud-bigquery-storage==2.1.0
3-
pandas==1.1.5
3+
pandas==1.1.5; python_version < '3.7'
4+
pandas==1.2.0; python_version > '3.6'
45
pandas-gbq==0.14.1
56
pyarrow==2.0.0
67
grpcio==1.34.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
google-cloud-datastore==2.0.1
1+
google-cloud-datastore==2.1.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==1.1.2
22
SQLAlchemy==1.3.22
3-
PyMySQL==0.10.1
3+
PyMySQL==1.0.2
44
gunicorn==20.0.4

codelabs/flex_and_vision/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ gunicorn==20.0.4; python_version > '3.0'
33
gunicorn==19.10.0; python_version < '3.0'
44
google-cloud-vision==2.0.0
55
google-cloud-storage==1.35.0
6-
google-cloud-datastore==2.0.1
6+
google-cloud-datastore==2.1.0

composer/functions/composer_storage_trigger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def trigger_dag(data, context=None):
5555
)
5656
# Make a POST request to IAP which then Triggers the DAG
5757
make_iap_request(
58-
webserver_url, client_id, method='POST', json={"conf": data})
58+
webserver_url, client_id, method='POST', json={"conf": data, "replace_microseconds": 'false'})
5959

6060

6161
# This code is copied from
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pytest==6.2.1
2-
pandas==1.1.5
3-
google-cloud-bigquery==2.6.1
2+
pandas==1.1.5; python_version < '3.7'
3+
pandas==1.2.0; python_version > '3.6'
4+
google-cloud-bigquery==2.6.2
45
pyarrow==2.0.0

data-science-onramp/data-ingestion/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
#google-auth-httplib2==0.0.3
44
google-cloud-storage==1.35.0
55
google-cloud-dataproc==2.2.0
6-
google-cloud-bigquery==2.6.1
6+
google-cloud-bigquery==2.6.2

0 commit comments

Comments
 (0)
0