Skip to content

Commit 1582b36

Browse files
authored
Merge branch 'master' into master
2 parents 1419e30 + 6eb6cfb commit 1582b36

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed
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.0
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
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.0
55
SQLAlchemy==1.3.22
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Django==3.1.5
2-
PyMySQL==0.10.1
2+
PyMySQL==1.0.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.0
44
gunicorn==20.0.4

endpoints/getting-started/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Flask==1.1.2
2-
flask-cors==3.0.9
2+
flask-cors==3.0.10
33
gunicorn==20.0.4
44
six==1.15.0
55
pyyaml==5.3.1

run/deployment-previews/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ RUN pip3 install --upgrade pip
2727
RUN pip3 install -r requirements.txt
2828

2929
# Run the CLI
30-
ENTRYPOINT ["python3","/app/check_status.py"]
30+
ENTRYPOINT ["python3", "/app/check_status.py"]
3131
# [END cloudrun_deployment_preview_dockerfile]

run/deployment-previews/check_status.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def github_token(project_id: str, ghtoken_secretname: str) -> str:
128128
error(e, context=f"finding secret {ghtoken_secretname}")
129129

130130
# The secret was encoded for you as part of the secret creation, so decode it now.
131-
github_token = response.payload.data.decode("UTF-8")
131+
github_token = response.payload.data.decode("UTF-8").strip()
132132
return github_token
133133

134134

@@ -245,7 +245,7 @@ def set(
245245
click.secho("Dry-run: ", fg="blue", bold=True, nl=False)
246246
click.echo(
247247
(
248-
f"Status would have been created on {repo.repo_name}, "
248+
f"Status would have been created on {repo_name}, "
249249
f"commit {commit.sha[:7]}, linking to {revision_url} "
250250
f"on service {service_obj['metadata']['name']}"
251251
)
@@ -260,7 +260,7 @@ def set(
260260
)
261261
click.secho("Success: ", fg="green", bold=True, nl=False)
262262
click.echo(
263-
f"Status created on {repo.repo_name}, commit {commit.sha[:7]}, "
263+
f"Status created on {repo_name}, commit {commit.sha[:7]}, "
264264
f"linking to {revision_url} on service {service_obj['metadata']['name']}"
265265
)
266266

storage/s3-sdk/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
boto3==1.16.49
1+
boto3==1.16.51

0 commit comments

Comments
 (0)