Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update python 3.13.1 to 20250106 #128

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/build_gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export LC_ALL=en_US.UTF-8

tool_name="python"
tool_version="3.13.1"
release_date="20241206"
release_date="20250106"
self_name="$tool_name-$tool_version"
release_version_dirpath="$dp0/release/$self_name"

mkdir -p "$release_version_dirpath" && cd "$dp0/release"
download_url="https://github.com/indygreg/python-build-standalone/releases/download/$release_date/cpython-$tool_version+$release_date-x86_64-unknown-linux-gnu-pgo-full.tar.zst"
download_url="https://github.com/indygreg/python-build-standalone/releases/download/$release_date/cpython-$tool_version+$release_date-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst"
cpython_zip="$dp0/release/raw_cpython-linux.tar.zst"
echo "download python from $download_url ..."
[[ ! -f "$cpython_zip" ]] && wget "$download_url" -O "$cpython_zip"
Expand Down
2 changes: 1 addition & 1 deletion python/build_msvc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

tool_name="python"
tool_version="3.13.1"
release_date="20241206"
release_date="20250106"
self_name="$tool_name-$tool_version"
release_version_dirpath="$dp0/release/$self_name"

Expand Down
2 changes: 1 addition & 1 deletion python/build_musl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apk add --no-cache alpine-sdk python3-dev

tool_name="python"
tool_version="3.13.1"
release_date="20241206"
release_date="20250106"
self_name="$tool_name-$tool_version"
release_version_dirpath="$dp0/release/$self_name"

Expand Down
Loading