Skip to content

Commit d39886d

Browse files
authored
chore(sdk): update sdk version to 1.4.1 (kubeflow#1093) (kubeflow#1106)
1 parent e6027dd commit d39886d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

sdk/python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ the Tekton YAML instead of Argo YAML. Since the KFP SDK was not designed and imp
108108
_monkey-patching_ was used to replace non-class methods and functions at runtime.
109109

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

114114

115115
## Adding New Code

sdk/python/kfp_tekton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '1.4.0'
15+
__version__ = '1.4.1'
1616

1717
from ._client import TektonClient # noqa F401
1818
from .k8s_client_helper import env_from_secret # noqa F401

sdk/python/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
kfp>=1.8.10,<1.8.15
1+
kfp>=1.8.10,<1.8.17
22
protobuf>=3.20.1,<4

sdk/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ idna==2.10
6767
# via requests
6868
jsonschema==3.2.0
6969
# via kfp
70-
kfp==1.8.14
70+
kfp==1.8.16
7171
# via -r sdk/python/requirements.in
7272
kfp-pipeline-spec==0.1.16
7373
# via kfp

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# NOTICE, after any updates to the following, ./requirements.in should be updated
5555
# accordingly.
5656
REQUIRES = [
57-
"kfp>=1.8.10,<1.8.15",
57+
"kfp>=1.8.10,<1.8.17",
5858
]
5959

6060
TESTS_REQUIRE = [

sdk/python/tests/compiler/testdata/resourceop_basic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
is failure.
7070
name: failure-condition
7171
type: string
72-
- default: aipipeline/kubectl-wrapper:1.4.0
72+
- default: aipipeline/kubectl-wrapper:1.4.1
7373
description: Kubectl wrapper image
7474
name: image
7575
type: string

sdk/python/tests/compiler/testdata/volume_op.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ spec:
7979
is failure.
8080
name: failure-condition
8181
type: string
82-
- default: aipipeline/kubectl-wrapper:1.4.0
82+
- default: aipipeline/kubectl-wrapper:1.4.1
8383
description: Kubectl wrapper image
8484
name: image
8585
type: string

0 commit comments

Comments
 (0)