Skip to content

Commit 7a15e44

Browse files
committed
bump kfp to v1.8.12
1 parent 84dd977 commit 7a15e44

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

kfp_local/_local_client.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,6 @@ def __init__(self, pipeline_root: Optional[str] = None) -> None:
120120
pipeline_root: The root directory where the output artifact of component
121121
will be saved.
122122
"""
123-
warnings.warn(
124-
"LocalClient is an Alpha[1] feature. It may be deprecated in the future.\n"
125-
"[1] https://github.com/kubeflow/pipelines/blob/master/docs/release/feature-stages.md#alpha", # noqa: E501
126-
category=FutureWarning,
127-
)
128123

129124
_pipeline_root = pipeline_root or tempfile.tempdir
130125

requirements.in

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
kfp==1.8.9
2-
3-
4-
1+
kfp>=1.8.12,<2.0

requirements.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# pip-compile
66
#
7-
absl-py==0.11.0
7+
absl-py==1.0.0
88
# via kfp
99
attrs==21.4.0
1010
# via jsonschema
@@ -29,11 +29,12 @@ docstring-parser==0.13
2929
# via kfp
3030
fire==0.4.0
3131
# via kfp
32-
google-api-core==2.7.1
32+
google-api-core==2.7.2
3333
# via
3434
# google-api-python-client
3535
# google-cloud-core
3636
# google-cloud-storage
37+
# kfp
3738
google-api-python-client==1.12.11
3839
# via kfp
3940
google-auth==1.35.0
@@ -47,7 +48,7 @@ google-auth==1.35.0
4748
# kubernetes
4849
google-auth-httplib2==0.1.0
4950
# via google-api-python-client
50-
google-cloud-core==2.2.3
51+
google-cloud-core==2.3.0
5152
# via google-cloud-storage
5253
google-cloud-storage==1.44.0
5354
# via kfp
@@ -69,7 +70,7 @@ importlib-metadata==4.11.3
6970
# jsonschema
7071
jsonschema==3.2.0
7172
# via kfp
72-
kfp==1.8.9
73+
kfp==1.8.12
7374
# via -r requirements.in
7475
kfp-pipeline-spec==0.1.14
7576
# via kfp
@@ -83,6 +84,7 @@ protobuf==3.20.0
8384
# via
8485
# google-api-core
8586
# google-cloud-storage
87+
# googleapis-common-protos
8688
# kfp
8789
# kfp-pipeline-spec
8890
pyasn1==0.4.8
@@ -93,7 +95,7 @@ pyasn1-modules==0.2.8
9395
# via google-auth
9496
pydantic==1.9.0
9597
# via kfp
96-
pyparsing==3.0.7
98+
pyparsing==3.0.8
9799
# via httplib2
98100
pyrsistent==0.18.1
99101
# via jsonschema

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _load_description() -> str:
2525

2626

2727
def _load_requires(
28-
requirements="requirements.txt",
28+
requirements="requirements.in",
2929
) -> List[str]:
3030
requirements_path = os.path.join(ROOT_PATH, requirements)
3131
with open(requirements_path) as f:

0 commit comments

Comments
 (0)