Skip to content

Commit

Permalink
revert 3.9 -> 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy committed Mar 18, 2022
1 parent 6e8e1ad commit f8be5fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"pipeline status:",
"{{$.inputs.parameters['status']}}"
],
"image": "python:3.9"
"image": "python:3.7"
}
},
"exec-print-op": {
Expand All @@ -75,7 +75,7 @@
"echo",
"{{$.inputs.parameters['message']}}"
],
"image": "python:3.9"
"image": "python:3.7"
}
}
}
Expand Down Expand Up @@ -143,4 +143,4 @@
},
"schemaVersion": "2.1.0",
"sdkVersion": "kfp-1.8.11"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# limitations under the License.
"""Pipeline using ExitHandler with PipelineTaskFinalStatus (YAML)."""

from kfp import compiler
from kfp import components
from kfp import dsl
from kfp import compiler
from kfp.dsl import component

exit_op = components.load_component_from_text("""
Expand All @@ -25,7 +25,7 @@
- {name: status, type: PipelineTaskFinalStatus}
implementation:
container:
image: python:3.9
image: python:3.7
command:
- echo
- "user input:"
Expand All @@ -40,7 +40,7 @@
- {name: message, type: String}
implementation:
container:
image: python:3.9
image: python:3.7
command:
- echo
- {inputValue: message}
Expand Down

0 comments on commit f8be5fd

Please sign in to comment.