1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-09-16 09:26:22 +02:00

fix(deps):update python to v3.10 for pythonBuild (#5468)

This commit is contained in:
Christopher Fenner
2025-09-05 12:19:10 +02:00
committed by GitHub
parent 876f2513b2
commit db7e796296
3 changed files with 3 additions and 3 deletions

View File

@@ -341,7 +341,7 @@ func pythonBuildMetadata() config.StepData {
},
},
Containers: []config.Container{
{Name: "python", Image: "python:3.9"},
{Name: "python", Image: "python:3.10"},
},
Outputs: config.StepOutputs{
Resources: []config.StepResources{

View File

@@ -40,7 +40,7 @@ func TestPythonIntegrationBuildProject(t *testing.T) {
os.WriteFile(filepath.Join(tempDir, "runPiper.sh"), []byte(testScript), 0700)
reqNode := testcontainers.ContainerRequest{
Image: "python:3.9",
Image: "python:3.10",
Cmd: []string{"tail", "-f"},
Mounts: testcontainers.Mounts(
testcontainers.BindMount(pwd, "/piperbin"),

View File

@@ -113,4 +113,4 @@ spec:
- name: custom/buildSettingsInfo
containers:
- name: python
image: python:3.9
image: python:3.10