File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
kubernetes_platform/python Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2020
2121NAME = 'kfp-kubernetes'
2222
23+
2324def 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+
3335def 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 = {
Original file line number Diff line number Diff 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' : [
You can’t perform that action at this time.
0 commit comments