fix(sdk): fix wrong kfp import causes wrong sdk_version being set in pipeline_spec. (#7433)

* fix wrong kfp import in compiler

* release note
This commit is contained in:
Chen Sun 2022-03-17 17:05:39 -07:00 committed by GitHub
parent 7cb9c155ad
commit c03701b82a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,8 @@
## Bug Fixes and Other Changes
* Fix wrong kfp import causes wrong sdk_version being set in pipeline_spec. [\#7433](https://github.com/kubeflow/pipelines/pull/7433)
## Documentation Updates
# 2.0.0-alpha.1

View File

@ -25,7 +25,7 @@ import uuid
from typing import (Any, Callable, Dict, List, Mapping, Optional, Set, Tuple,
Union)
import kfp.deprecated as kfp
import kfp
from google.protobuf import json_format
from kfp.pipeline_spec import pipeline_spec_pb2
from kfp import dsl