dongjoon-hyun opened a new pull request, #56335: URL: https://github.com/apache/spark/pull/56335
### What changes were proposed in this pull request? This PR uses the Python 3.9 specific `get-pip.py` URL in `dev/create-release/spark-rm/Dockerfile`. ```diff -RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.9 && \ +RUN curl -sS https://bootstrap.pypa.io/pip/3.9/get-pip.py | python3.9 && \ curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 ``` ### Why are the changes needed? The `Release Apache Spark` workflow for `branch-4.0` fails because the canonical `get-pip.py` dropped Python 3.9 support: ``` ERROR: This script does not work on Python 3.9. The minimum supported Python version is 3.10. Please use https://bootstrap.pypa.io/pip/3.9/get-pip.py instead. ``` The version-pinned URL is the documented replacement, matching what `branch-3.5` already does for Python 3.8. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Re-running the `Release Apache Spark` workflow on `branch-4.0`. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: Claude Code (Claude Opus 4.8) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
