Skip to content

Commit

Permalink
Update to recent travis build vm to unblock build. (#177)
Browse files Browse the repository at this point in the history
* Update to recent travis build vm to unblock build.
* Adapt to more strict python3 type checking.
  • Loading branch information
falkzoll committed Sep 22, 2022
1 parent 4361b44 commit 99479c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -16,9 +16,10 @@
#

sudo: required
dist: focal
language: go
go:
- "1.16.x" # Do not fix the patch level to automatically get security fixes.
- "1.19.x" # Do not fix the patch level to automatically get security fixes.
services:
- docker

Expand Down
2 changes: 1 addition & 1 deletion openwhisk/_test/pysample/lib/exec.py
Expand Up @@ -33,5 +33,5 @@
payload = args["value"]
res = main(payload)
out.write(json.dumps(res, ensure_ascii=False).encode('utf-8'))
out.write("\n")
out.write(b"\n")
out.flush()

0 comments on commit 99479c6

Please sign in to comment.