Skip to content

Commit

Permalink
Update sdk release to 1.2.1 (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored May 6, 2022
1 parent ea1221a commit 1ef7b03
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sdk/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ 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.2.0` which is aligned with KFP
specific version of the `kfp` SDK compiler. As of now the `kfp-tekton` SDK version is `1.2.1` which is aligned with KFP
SDK version [`1.8.10`](https://pypi.org/project/kfp/1.8.10/) and [`1.8.11`](https://pypi.org/project/kfp/1.8.11/).


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.2.0'
__version__ = '1.2.1'

from ._client import TektonClient # noqa F401
from .k8s_client_helper import env_from_secret # noqa F401
4 changes: 2 additions & 2 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
#
# To create a distribution for PyPi run:
#
# $ export KFP_TEKTON_VERSION=1.2.0-rc1
# $ export KFP_TEKTON_VERSION=1.2.1-rc1
# $ python3 setup.py sdist
# $ twine check dist/kfp-tekton-${KFP_TEKTON_VERSION/-rc/rc}.tar.gz
# $ twine upload --repository pypi dist/kfp-tekton-${KFP_TEKTON_VERSION/-rc/rc}.tar.gz
#
# ... or:
#
# $ make distribution KFP_TEKTON_VERSION=1.2.0-rc1
# $ make distribution KFP_TEKTON_VERSION=1.2.1-rc1
#
# =============================================================================

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 @@ -65,7 +65,7 @@ spec:
is failure.
name: failure-condition
type: string
- default: aipipeline/kubectl-wrapper:1.2.0
- default: aipipeline/kubectl-wrapper:1.2.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 @@ -75,7 +75,7 @@ spec:
is failure.
name: failure-condition
type: string
- default: aipipeline/kubectl-wrapper:1.2.0
- default: aipipeline/kubectl-wrapper:1.2.1
description: Kubectl wrapper image
name: image
type: string
Expand Down

0 comments on commit 1ef7b03

Please sign in to comment.