Skip to content

Commit

Permalink
chore(sdk): support Python 3.13
Browse files Browse the repository at this point in the history
Signed-off-by: Chen Sun <[email protected]>
  • Loading branch information
chensun committed Nov 13, 2024
1 parent 55de4a3 commit a7a553f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kfp-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11, 3.12]
python-version: [3.9, 3.10, 3.11, 3.12, 3.13]

steps:
- name: Checkout code
Expand Down
1 change: 1 addition & 0 deletions sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
## Deprecations

## Bug fixes and other changes
* Support Python 3.13. [\#11372](https://github.com/kubeflow/pipelines/pull/11372)

## Documentation updates

Expand Down
3 changes: 2 additions & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,14 @@ def read_readme() -> str:
'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',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.9.0,<3.13.0',
python_requires='>=3.9.0',
include_package_data=True,
entry_points={
'console_scripts': [
Expand Down

0 comments on commit a7a553f

Please sign in to comment.