Skip to content

Commit d470535

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents de4ad2e + b20c339 commit d470535

File tree

408 files changed

+16190
-4205
lines changed

Some content is hidden

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

408 files changed

+16190
-4205
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ bigquery/transfer/* @tswast
99

1010
# Tim Swast is the primary maintainer of the Composer samples.
1111
composer/* @tswast
12+
13+
# Alix Hamilton is the primary maintainer of the Jupyter notebook samples
14+
notebooks/* @alixhami

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
.coverage
44
.tox
55
.pytest_cache
6+
.ipynb_checkpoints
7+
.executed_notebooks
68
coverage.xml
79
python-docs-samples.json
810
service-account.json

.kokoro/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build_file: "python-docs-samples/.kokoro/trampoline.sh"
99
# Use the Python worker docker image.
1010
env_vars: {
1111
key: "TRAMPOLINE_IMAGE"
12-
value: "gcr.io/cloud-devrel-kokoro-resources/python@sha256:4b6ba8c199e96248980db4538065cddeea594138b9b9fb2d0388603922087747"
12+
value: "gcr.io/cloud-devrel-kokoro-resources/python@sha256:e11a459d01e5dcd3613fda35c7c94edfecfe911ed79c078580ff59de300b1938"
1313
}
1414

1515
# Specify project ID
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ env_vars: {
1111

1212
env_vars: {
1313
key: "NOX_SESSION"
14-
value: "testing and py36 and not appengine"
14+
value: "trace and py36 and not appengine"
1515
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ env_vars: {
1111

1212
env_vars: {
1313
key: "NOX_SESSION"
14-
value: "testing and py36 and not appengine"
14+
value: "trace and py36 and not appengine"
1515
}

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ install:
3232
- pip install --upgrade nox
3333
- pip install --upgrade git+https://github.com/dhermes/ci-diff-helper.git
3434
script:
35-
- "./scripts/travis.sh"
35+
- "./scripts/travis.sh"

AUTHORING_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ generation.
432432

433433
To use nox, install it globally with `pip`:
434434

435-
$ pip install nox-automation
435+
$ pip install nox
436436

437437
Nox automatically discovers all samples in the repository and generates three
438438
types of sessions for *each* sample in this repository:

appengine/flexible/analytics/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def track_event(category, action, label=None, value=0):
4242
}
4343

4444
response = requests.post(
45-
'http://www.google-analytics.com/collect', data=data)
45+
'https://www.google-analytics.com/collect', data=data)
4646

4747
# If the request fails, this will raise a RequestException. Depending
4848
# on your application's needs, this may be a non-error and can be caught
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==1.0.2
22
gunicorn==19.9.0
3-
requests[security]==2.19.1
3+
requests[security]==2.21.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==1.0.2
22
Flask-SQLAlchemy==2.3.2
33
gunicorn==19.9.0
4-
PyMySQL==0.9.2
4+
PyMySQL==0.9.3

0 commit comments

Comments
 (0)