diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 02e19170a..76ccae2cd 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -64,7 +64,7 @@ jobs: uses: ./.github/workflows/release.yml with: workflow: ${{ github.workflow }} - tool_version: '3.12.2' + tool_version: '3.12.5' prepare_body: | bsdtar -Oxf ./build-musl/build-musl.tar.gz build-musl.md >> body.md bsdtar -Oxf ./build-gnu/build-gnu.tar.gz build-gnu.md >> body.md diff --git a/README.md b/README.md index 72cd5581e..92cffda04 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Standalone (static) tools: | releases | latest source | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/python-3.12.2/total?label=⭳%20python-3.12.2)](https://github.com/hemnstill/StandaloneTools/releases/tag/python-3.12.2) | [![GitHub Repo stars](https://img.shields.io/github/stars/indygreg/python-build-standalone?style=social&label=python-build-standalone)](https://github.com/indygreg/python-build-standalone) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/indygreg/python-build-standalone)](https://python-build-standalone.readthedocs.io/en/latest/)
[![GitHub Repo stars](https://img.shields.io/github/stars/python/cpython?style=social&label=python)](https://github.com/python/cpython) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/python/cpython)](https://docs.python.org/3/) | +| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/python-3.12.5/total?label=⭳%20python-3.12.5)](https://github.com/hemnstill/StandaloneTools/releases/tag/python-3.12.5) | [![GitHub Repo stars](https://img.shields.io/github/stars/indygreg/python-build-standalone?style=social&label=python-build-standalone)](https://github.com/indygreg/python-build-standalone) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/indygreg/python-build-standalone)](https://python-build-standalone.readthedocs.io/en/latest/)
[![GitHub Repo stars](https://img.shields.io/github/stars/python/cpython?style=social&label=python)](https://github.com/python/cpython) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/python/cpython)](https://docs.python.org/3/) | | [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/poetry-1.8.2/total?label=⭳%20poetry-1.8.2)](https://github.com/hemnstill/StandaloneTools/releases/tag/poetry-1.8.2) | [![GitHub Repo stars](https://img.shields.io/github/stars/python-poetry/poetry?style=social&label=poetry)](https://github.com/python-poetry/poetry) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/python-poetry/poetry)](https://python-poetry.org/history/) | | [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/pylint-3.0.3/total?label=⭳%20pylint-3.0.3)](https://github.com/hemnstill/StandaloneTools/releases/tag/pylint-3.0.3) | [![GitHub Repo stars](https://img.shields.io/github/stars/PyCQA/pylint?style=social&label=pylint)](https://github.com/PyCQA/pylint) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/PyCQA/pylint)](https://pylint.pycqa.org/en/latest/) | | [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/mypy-1.8.0/total?label=⭳%20mypy-1.8.0)](https://github.com/hemnstill/StandaloneTools/releases/tag/mypy-1.8.0) | [![GitHub Repo stars](https://img.shields.io/github/stars/python/mypy?style=social&label=mypy)](https://github.com/python/mypy) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/python/mypy)](https://mypy.readthedocs.io/en/latest/) | diff --git a/python/build_gnu.sh b/python/build_gnu.sh index b5731b531..05839bdea 100755 --- a/python/build_gnu.sh +++ b/python/build_gnu.sh @@ -9,7 +9,7 @@ apk add --no-cache alpine-sdk python3-dev export LC_ALL=en_US.UTF-8 tool_name="python" -tool_version="3.12.2" +tool_version="3.12.5" release_date="20240224" self_name="$tool_name-$tool_version" release_version_dirpath="$dp0/release/$self_name" diff --git a/python/build_msvc.sh b/python/build_msvc.sh index 81a1f1b9b..db64ea736 100755 --- a/python/build_msvc.sh +++ b/python/build_msvc.sh @@ -3,7 +3,7 @@ dp0="$(realpath "$(dirname "$0")")" set -e tool_name="python" -tool_version="3.12.2" +tool_version="3.12.5" release_date="20240224" self_name="$tool_name-$tool_version" release_version_dirpath="$dp0/release/$self_name" diff --git a/python/build_musl.sh b/python/build_musl.sh index d119e5216..d1d86627c 100755 --- a/python/build_musl.sh +++ b/python/build_musl.sh @@ -6,7 +6,7 @@ apk update apk add --no-cache alpine-sdk python3-dev tool_name="python" -tool_version="3.12.2" +tool_version="3.12.5" release_date="20240224" self_name="$tool_name-$tool_version" release_version_dirpath="$dp0/release/$self_name" diff --git a/python/test_linux.sh b/python/test_linux.sh index e8ea2a281..d9df2b5a6 100755 --- a/python/test_linux.sh +++ b/python/test_linux.sh @@ -3,7 +3,7 @@ ../.tools/install_alpine_glibc.sh test_version() { - assertEquals "Python 3.12.2" "$(../bin/Scripts/bin/python3 --version)" + assertEquals "Python 3.12.5" "$(../bin/Scripts/bin/python3 --version)" } # Load and run shUnit2. diff --git a/python/test_windows.sh b/python/test_windows.sh index 49fb0e5f0..bb44415da 100755 --- a/python/test_windows.sh +++ b/python/test_windows.sh @@ -1,7 +1,7 @@ #!/bin/bash test_version() { - assertEquals "Python 3.12.2" "$(../bin/Scripts/python.exe --version)" + assertEquals "Python 3.12.5" "$(../bin/Scripts/python.exe --version)" } # Load and run shUnit2.