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:
parent
7cb9c155ad
commit
c03701b82a
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue