Skip to content

Commit

Permalink
chore(sdk): update sdk version to 1.4.1 (kubeflow#1093) (kubeflow#1106)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Dec 13, 2022
1 parent e6027dd commit d39886d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions sdk/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ the Tekton YAML instead of Argo YAML. Since the KFP SDK was not designed and imp
_monkey-patching_ was used to replace non-class methods and functions at runtime.

In order for the _monkey patch_ to work properly, the `kfp-tekton` compiler source code has to be aligned with a
specific version of the `kfp` SDK compiler. As of now the `kfp-tekton` SDK version is `1.4.0` which is aligned with KFP
SDK version [`1.8.14`](https://pypi.org/project/kfp/1.8.14/).
specific version of the `kfp` SDK compiler. As of now the `kfp-tekton` SDK version is `1.4.1` which is aligned with KFP
SDK version [`1.8.16`](https://pypi.org/project/kfp/1.8.16/).


## Adding New Code
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp_tekton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '1.4.0'
__version__ = '1.4.1'

from ._client import TektonClient # noqa F401
from .k8s_client_helper import env_from_secret # noqa F401
2 changes: 1 addition & 1 deletion sdk/python/requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kfp>=1.8.10,<1.8.15
kfp>=1.8.10,<1.8.17
protobuf>=3.20.1,<4
2 changes: 1 addition & 1 deletion sdk/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ idna==2.10
# via requests
jsonschema==3.2.0
# via kfp
kfp==1.8.14
kfp==1.8.16
# via -r sdk/python/requirements.in
kfp-pipeline-spec==0.1.16
# via kfp
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# NOTICE, after any updates to the following, ./requirements.in should be updated
# accordingly.
REQUIRES = [
"kfp>=1.8.10,<1.8.15",
"kfp>=1.8.10,<1.8.17",
]

TESTS_REQUIRE = [
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/tests/compiler/testdata/resourceop_basic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:
is failure.
name: failure-condition
type: string
- default: aipipeline/kubectl-wrapper:1.4.0
- default: aipipeline/kubectl-wrapper:1.4.1
description: Kubectl wrapper image
name: image
type: string
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/tests/compiler/testdata/volume_op.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ spec:
is failure.
name: failure-condition
type: string
- default: aipipeline/kubectl-wrapper:1.4.0
- default: aipipeline/kubectl-wrapper:1.4.1
description: Kubectl wrapper image
name: image
type: string
Expand Down

0 comments on commit d39886d

Please sign in to comment.