From bd1209ede49a9bb96042033967d3dd4b4b173af7 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 10 Nov 2025 19:52:02 +0200 Subject: [PATCH] Update release-cycle.json URL --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index a4350d7..0c2c906 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -28,7 +28,7 @@ jobs: steps: - id: set-pythons run: | - data=`curl -s --url "https://raw.githubusercontent.com/python/devguide/refs/heads/main/include/release-cycle.json"` + data=`curl -s --url "https://peps.python.org/api/release-cycle.json"` pythonarray=`echo ${data} | jq '.[] | select((.status!="end-of-life") and (.status!="prerelease")) | select(.branch | startswith("3.")) | .branch' | jq -s -c` echo "pythons=${pythonarray}" >> "$GITHUB_OUTPUT"