Skip to content

Commit 371c4ef

Browse files
update kubernetes_platform/python/setup.py sdk/python/setup.py
1 parent 25f8141 commit 371c4ef

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

kubernetes_platform/python/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
NAME = 'kfp-kubernetes'
2222

23+
2324
def get_requirements(requirements_file: str) -> List[str]:
2425
"""Read requirements from requirements.in."""
2526

@@ -30,6 +31,7 @@ def get_requirements(requirements_file: str) -> List[str]:
3031
lines = [line for line in lines if not line.startswith('#') and line]
3132
return lines
3233

34+
3335
def find_version(*file_path_parts: str) -> str:
3436
"""Get version from kfp.__init__.__version__."""
3537

@@ -72,7 +74,7 @@ def read_readme() -> str:
7274
'https://github.com/kubeflow/pipelines/tree/master/kubernetes_platform/python',
7375
},
7476
packages=setuptools.find_namespace_packages(include=['kfp.*']),
75-
python_requires='>=3.9.0',
77+
python_requires='>=3.10.0',
7678
install_requires=get_requirements('requirements.txt'),
7779
include_package_data=True,
7880
extras_require={

sdk/python/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ def read_readme() -> str:
8787
'Intended Audience :: Science/Research',
8888
'License :: OSI Approved :: Apache Software License',
8989
'Programming Language :: Python :: 3',
90-
'Programming Language :: Python :: 3.9',
9190
'Programming Language :: Python :: 3.10',
9291
'Programming Language :: Python :: 3.11',
9392
'Programming Language :: Python :: 3.12',
@@ -98,7 +97,7 @@ def read_readme() -> str:
9897
'Topic :: Software Development :: Libraries',
9998
'Topic :: Software Development :: Libraries :: Python Modules',
10099
],
101-
python_requires='>=3.9.0',
100+
python_requires='>=3.10.0',
102101
include_package_data=True,
103102
entry_points={
104103
'console_scripts': [

0 commit comments

Comments
 (0)