diff --git a/components/google-cloud/RELEASE.md b/components/google-cloud/RELEASE.md index a07db464932..46821104738 100644 --- a/components/google-cloud/RELEASE.md +++ b/components/google-cloud/RELEASE.md @@ -4,6 +4,8 @@ * Deprecate `preview.custom_job` module. * Fix default location in `v1.create_custom_training_job_from_component`. * Update Docker image. +* Bump supported KFP versions to `kfp>=2.6.0,<=2.10.0`. +* Support Python versions 3.12 and 3.13. ## Release 2.17.0 * Fix Gemini batch prediction support to `v1.model_evaluation.autosxs_pipeline` after output schema change. diff --git a/components/google-cloud/setup.py b/components/google-cloud/setup.py index 125f89d82b6..b2d14aeaf1b 100644 --- a/components/google-cloud/setup.py +++ b/components/google-cloud/setup.py @@ -77,12 +77,12 @@ ], }, include_package_data=True, - python_requires=">=3.8.0,<3.12.0", + python_requires=">=3.8.0,<=3.13.0", install_requires=[ # Pin google-api-core version for the bug fixing in 1.31.5 # https://github.com/googleapis/python-api-core/releases/tag/v1.31.5 "google-api-core>=1.31.5,<3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0", - "kfp>=2.6.0,<=2.7.0", + "kfp>=2.6.0,<=2.10.0", "google-cloud-aiplatform>=1.14.0,<2", "Jinja2>=3.1.2,<4", ], @@ -108,6 +108,8 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development",