Skip to content

Commit

Permalink
chore(sdk): release KFP SDK 2.10.1
Browse files Browse the repository at this point in the history
Signed-off-by: Chen Sun <chensun@users.noreply.github.com>
  • Loading branch information
chensun committed Nov 14, 2024
1 parent af0cd06 commit d3545ba
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
9 changes: 7 additions & 2 deletions docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
[
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.0/",
"title": "2.10.0",
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
"title": "2.10.1",
"aliases": [
"stable",
"latest"
]
},
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.0/",
"title": "2.10.0",
"aliases": []
},
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.9.0/",
"title": "2.9.0",
Expand Down
15 changes: 15 additions & 0 deletions sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@

## Deprecations

## Bug fixes and other changes

## Documentation updates

# 2.10.1

## Features

## Breaking changes

## Deprecations
* Remove `kfp.deprecated` module [\#11366](https://github.com/kubeflow/pipelines/pull/11366)

## Bug fixes and other changes
* Support Python 3.13. [\#11372](https://github.com/kubeflow/pipelines/pull/11372)
* Fix accelerator type setting [\#11373](https://github.com/kubeflow/pipelines/pull/11373)
* Depends on `kfp-pipeline-spec==0.5.0`.

## Documentation updates

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

__version__ = '2.10.0'
__version__ = '2.10.1'

import sys
import warnings
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ google-auth>=1.6.1,<3
# https://github.com/googleapis/python-storage/blob/main/CHANGELOG.md#221-2022-03-15
google-cloud-storage>=2.2.1,<3
# pin kfp-pipeline-spec to an exact version, since this is the contract between a given KFP SDK version and the BE. we don't want old version of the SDK to write new fields and to have the BE reject the new unsupported field (even if the new field backward compatible from a proto perspective)
kfp-pipeline-spec==0.4.0
kfp-pipeline-spec==0.5.0
# Update the upper version whenever a new major version of the
# kfp-server-api package is released.
# Update the lower version when kfp sdk depends on new apis/fields in
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ googleapis-common-protos==1.63.2
# via google-api-core
idna==3.7
# via requests
kfp-pipeline-spec==0.4.0
kfp-pipeline-spec==0.5.0
# via -r requirements.in
kfp-server-api==2.3.0
# via -r requirements.in
Expand Down

0 comments on commit d3545ba

Please sign in to comment.