chore(sdk): release KFP SDK 2.1.2 (#9797)
This commit is contained in:
parent
540294aedb
commit
25f6ee6389
|
|
@ -136,7 +136,7 @@ html_theme_options = {
|
|||
'version':
|
||||
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.1.1/',
|
||||
'title':
|
||||
'2.1.1',
|
||||
'2.1.2',
|
||||
'aliases': ['stable'],
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
## Bug fixes and other changes
|
||||
|
||||
## Documentation updates
|
||||
# 2.1.1
|
||||
# 2.1.2
|
||||
|
||||
## Features
|
||||
* Create "dependency-free" runtime package (only `typing_extensions` required) for Lightweight Python Components to reduce runtime dependency resolution errors [\#9710](https://github.com/kubeflow/pipelines/pull/9710), [\#9738](https://github.com/kubeflow/pipelines/pull/9738)
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ import setuptools
|
|||
|
||||
setuptools.setup(
|
||||
name='kfp-dsl',
|
||||
version='2.1.1',
|
||||
version='2.1.2',
|
||||
description='A KFP SDK subpackage containing the DSL and runtime code.',
|
||||
author='google',
|
||||
author_email='kubeflow-pipelines@google.com',
|
||||
|
|
|
|||
|
|
@ -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.1.1'
|
||||
__version__ = '2.1.2'
|
||||
|
||||
TYPE_CHECK = True
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ google-api-core>=1.31.5,<3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0
|
|||
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
|
||||
kfp-dsl==2.1.1
|
||||
kfp-dsl==2.1.2
|
||||
# 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.2.2
|
||||
# Update the upper version whenever a new major version of the
|
||||
|
|
|
|||
Loading…
Reference in New Issue