From c1e80802c321ff9fad53af4fa2e69eb95d5754fd Mon Sep 17 00:00:00 2001 From: Yaqi Date: Tue, 15 Feb 2022 00:52:35 -0800 Subject: [PATCH] address comments --- sdk/RELEASE.md | 1 + sdk/python/requirements.in | 1 - sdk/python/setup.py | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index 0e46d9cee03..9b770610cdf 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -17,6 +17,7 @@ * Remove sdk/python/kfp/v2/google directory for v2, including google client and custom job [\#6886](https://github.com/kubeflow/pipelines/pull/6886) * APIs imported from the v1 namespace are no longer supported by the v2 compiler. [\#6890](https://github.com/kubeflow/pipelines/pull/6890) * Deprecate v2 compatible mode in v1 compiler. [\#6958](https://github.com/kubeflow/pipelines/pull/6958) +* Drop support for python 3.6 [\#7303](https://github.com/kubeflow/pipelines/pull/7303) ### For Pipeline Authors diff --git a/sdk/python/requirements.in b/sdk/python/requirements.in index 77b396c79f9..5f684b9eea2 100644 --- a/sdk/python/requirements.in +++ b/sdk/python/requirements.in @@ -34,5 +34,4 @@ absl-py>=0.9,<=0.11 kfp-pipeline-spec>=0.1.13,<0.2.0 fire>=0.3.1,<1 pydantic>=1.8.2,<2 -dataclasses>=0.8,<1; python_version<"3.9" typing-extensions>=3.7.4,<4; python_version<"3.9" diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 7395af22598..66a4e4741d4 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -54,7 +54,6 @@ 'pydantic>=1.8.2,<2', 'typer>=0.3.2,<1.0', # Standard library backports - 'dataclasses;python_version<"3.9"', 'typing-extensions>=3.7.4,<4;python_version<"3.9"', ]