Skip to content

Commit b590989

Browse files
committed
Removed Python versions matrix
Signed-off-by: hbelmiro <helber.belmiro@gmail.com>
1 parent 7b1ee86 commit b590989

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/kfp-kubernetes-execution-tests.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@ on:
1414
jobs:
1515
kfp-kubernetes-execution-tests:
1616
runs-on: ubuntu-24.04
17-
strategy:
18-
matrix:
19-
python: [
20-
{ 'version': '3.9' },
21-
{ 'version': '3.10' },
22-
{ 'version': '3.11' },
23-
{ 'version': '3.12' }
24-
]
2517
steps:
2618
- name: Checkout code
2719
uses: actions/checkout@v4
@@ -35,7 +27,7 @@ jobs:
3527
- name: Set up Python
3628
uses: actions/setup-python@v4
3729
with:
38-
python-version: ${{matrix.python.version}}
30+
python-version: '3.9'
3931

4032
- name: apt-get update
4133
run: sudo apt-get update
@@ -68,8 +60,6 @@ jobs:
6860

6961
- name: Install kfp-kubernetes from source
7062
run: |
71-
# rust needed for transitive deps in dev extras on Python:3.12
72-
sudo apt-get install rustc -y
7363
pip install -e ./kubernetes_platform/python[dev]
7464
7565
- name: Install requirements

0 commit comments

Comments
 (0)