Skip to content

Commit 788531b

Browse files
author
Googler
committed
chore(components): Change the warning for Python 3.8
PiperOrigin-RevId: 628153803
1 parent 75184e9 commit 788531b

File tree

1 file changed

+4
-5
lines changed
  • components/google-cloud/google_cloud_pipeline_components

1 file changed

+4
-5
lines changed

components/google-cloud/google_cloud_pipeline_components/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@
2020
if sys.version_info < (3, 9):
2121
warnings.warn(
2222
(
23-
'Python 3.8 has reached end-of-life. Google Cloud Pipeline Components'
24-
' will drop support for Python 3.8 in Oct, 2024. To use new'
25-
' versions of the KFP SDK after that date, you will need to upgrade'
26-
' to Python >= 3.9. See https://devguide.python.org/versions/ for'
27-
' more details.'
23+
' Google Cloud Pipeline Components will drop support for Python 3.8'
24+
' on Oct 1, 2024. To use new versions of the GCPC SDK after that'
25+
' date, you will need to upgrade to Python >= 3.9. See'
26+
' https://devguide.python.org/versions/ for more details.'
2827
),
2928
FutureWarning,
3029
stacklevel=2,

0 commit comments

Comments
 (0)