File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
kfp-kubernetes-execution-tests :
16
16
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
- ]
25
17
steps :
26
18
- name : Checkout code
27
19
uses : actions/checkout@v4
35
27
- name : Set up Python
36
28
uses : actions/setup-python@v4
37
29
with :
38
- python-version : ${{matrix.python.version}}
30
+ python-version : ' 3.9 '
39
31
40
32
- name : apt-get update
41
33
run : sudo apt-get update
68
60
69
61
- name : Install kfp-kubernetes from source
70
62
run : |
71
- # rust needed for transitive deps in dev extras on Python:3.12
72
- sudo apt-get install rustc -y
73
63
pip install -e ./kubernetes_platform/python[dev]
74
64
75
65
- name : Install requirements
You can’t perform that action at this time.
0 commit comments