Update package version to 80.9.0

This commit is contained in:
2025-09-21 18:17:31 +03:00
parent 94d62918e4
commit 4806ce24e7
2 changed files with 13 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="pypa/setuptools"
# 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"/releases/latest | jq -r '.tag_name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+1 -2
View File
@@ -1,7 +1,6 @@
name: python-setuptools name: python-setuptools
description: Easily download, build, install, upgrade, and uninstall Python packages description: Easily download, build, install, upgrade, and uninstall Python packages
version: 69.1.0 version: 80.9.0
revision: 4
url: https://pypi.org/project/setuptools/ url: https://pypi.org/project/setuptools/
license: MIT license: MIT
architecture: any architecture: any