Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/kfp-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ concurrency:
jobs:
sdk-tests:
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
matrix:
python-version: ['3.9', '3.13']
python-version: ['3.11', '3.13']
Comment on lines -25 to +26
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason for bumping this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't we update our minimum supported python version to 3.11 recently, I just did that based on that, but if that's not true, I will revert it back to 3.9

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We updated our images, but we were still testing the sdk against 3.9-3.13. We wanted to make sure that users who were slow to upgrade their python environments wouldn't be cut off from newer sdk releases.


steps:
- name: Checkout code
Expand Down Expand Up @@ -57,7 +58,7 @@ jobs:
sudo systemctl enable docker
sudo usermod -aG docker "$USER"
# Wait for Docker to be ready
timeout 30 bash -c 'until docker info > /dev/null 2>&1; do sleep 1; done'
timeout 5 bash -c 'until docker info > /dev/null 2>&1; do sleep 1; done'
docker info

- name: Run SDK Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kfp-sdk-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.13']
python-version: ['3.11', '3.13']
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as above

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same reason


steps:
- name: Checkout code
Expand Down
347 changes: 0 additions & 347 deletions sdk/python/kfp/local/dag_orchestrator.py

This file was deleted.

Loading
Loading