Skip to content

Commit

Permalink
Revert updated python version of cicd action
Browse files Browse the repository at this point in the history
Signed-off-by: Ukjae Jeong <jeongukjae@gmail.com>
  • Loading branch information
jeongukjae committed Aug 20, 2024
1 parent b7d9a5c commit b381f54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ jobs:
- name: Install poetry
run: pipx install poetry

- name: setup python 3.9
- name: setup python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.8
cache: "poetry"

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion tests/submissions/test_optional_input_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@script(outputs=Parameter(name="message-out", value_from={"path": "/tmp/message-out"}))
def print_msg(message: Optional[str] = None):
with open("/tmp/message-out", "w") as f:
f.write(f"Got: {message}")
f.write("Got: {}".format(message))


def get_workflow() -> Workflow:
Expand Down

0 comments on commit b381f54

Please sign in to comment.