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

update python to 3.12

This commit is contained in:
Christopher Fenner
2025-09-04 09:30:00 +02:00
parent aac600b0bd
commit 2132251e02
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.11"},
{Name: "python", Image: "python:3.12"},
},
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.11",
Image: "python:3.12",
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.11
image: python:3.12