From db41b96c913de532073728203e59749e6b4eac2c Mon Sep 17 00:00:00 2001 From: Sergey Novikov Date: Tue, 11 Feb 2025 10:25:08 +0100 Subject: [PATCH] Python patch version updates (2025-02-04) --- .github/workflows/docker-build.yml | 4 ++-- LICENSE | 2 +- Makefile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 1b326a0..f948c9d 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -19,8 +19,8 @@ jobs: - 3.9.21 - 3.10.16 - 3.11.11 - - 3.12.8 - - 3.13.1 + - 3.12.9 + - 3.13.2 steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/LICENSE b/LICENSE index ec3748c..fec3b7d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022-2024 Flaconi GmbH +Copyright (c) 2022-2025 Flaconi GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index ed4c85f..ef10701 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,11 @@ IMAGE = flaconi/jnlp-slave-py TAG = latest # Base image version: https://github.com/jenkinsci/docker-agent/releases/latest -JENKINS_AGENT = 3283.v92c105e0f819-3-jdk21 +JENKINS_AGENT = 3283.v92c105e0f819-8-jdk21 # Python versions: $PYTHON_MAJOR.$PYTHON_PATCH PYTHON_MAJOR = 3.13 -PYTHON_PATCH = 1 +PYTHON_PATCH = 2 pull: docker pull $(shell grep FROM Dockerfile | sed 's/^FROM//g' | sed "s/\$${JENKINS_AGENT}/$(JENKINS_AGENT)/g";)