shunping opened a new pull request, #39246:
URL: https://github.com/apache/beam/pull/39246
This PR fixes the broken scripts in python automation scripts.
- Update download_files() in python_release_automation_utils.sh to support
Python 3.10 - 3.14.
- Update manylinux wheel filename pattern for newer release artifacts.
- Pass `-e robots=off` to wget to avoid robots.txt blocking artifact
downloads.
Verified that the files can be downloaded successfully using the following
script:
```bash
set -e
set -v
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
source "$SCRIPT_DIR/python_release_automation_utils.sh"
export VERSION=2.74.0
export
RC_STAGING_URL="https://dist.apache.org/repos/dist/dev/beam/$VERSION/python"
for version in 3.10 3.11 3.12 3.13 3.14
do
download_files "wheel" "python${version}"
download_files "tar" "python${version}"
done
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]