Skip to content

Commit 03471a5

Browse files
committed
need to drop out pre-release pythons too.
1 parent 9e38a44 commit 03471a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- id: set-pythons
3030
run: |
3131
data=`curl -s --url "https://raw.githubusercontent.com/python/devguide/refs/heads/main/include/release-cycle.json"`
32-
pythonarray=`echo ${data} | jq '.[] | select(.status!="end-of-life") | select(.branch | startswith("3.")) | .branch' | jq -s -c`
32+
pythonarray=`echo ${data} | jq '.[] | select((.status!="end-of-life") and (.status!="prerelease")) | select(.branch | startswith("3.")) | .branch' | jq -s -c`
3333
echo "pythons=${pythonarray}" >> "$GITHUB_OUTPUT"
3434
3535
build:

0 commit comments

Comments
 (0)