Rebuild with python 3.14

This commit is contained in:
2026-05-06 11:41:15 +03:00
parent ef3879c508
commit c7ca7aabc2
3 changed files with 12 additions and 14 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
REPO="pypa/pyproject-hooks"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/tags | jq -r '.[].name' | head -n1)
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/tags | jq -r '.[0].name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')