This is an automated email from the ASF dual-hosted git repository.
vterentev pushed a commit to branch fix-python-rc
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/fix-python-rc by this push:
new bcf79b23540 Add space character
bcf79b23540 is described below
commit bcf79b23540a6e369449191e5f328e1eeac14139
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Fri Aug 29 22:27:08 2025 +0400
Add space character
---
sdks/python/container/common.gradle | 2 +-
sdks/python/container/ml/common.gradle | 2 +-
sdks/python/container/run_generate_requirements.sh | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sdks/python/container/common.gradle
b/sdks/python/container/common.gradle
index 38911510680..6471971147f 100644
--- a/sdks/python/container/common.gradle
+++ b/sdks/python/container/common.gradle
@@ -32,7 +32,7 @@ dependencies {
def generatePythonRequirements = tasks.register("generatePythonRequirements") {
dependsOn ':sdks:python:sdist'
- def pipExtraOptions = project.hasProperty("testRCDependencies") ? " --pre" :
""
+ def pipExtraOptions = project.hasProperty("testRCDependencies") ? "--pre" :
""
def runScriptsPath =
"${rootDir}/sdks/python/container/run_generate_requirements.sh"
doLast {
exec {
diff --git a/sdks/python/container/ml/common.gradle
b/sdks/python/container/ml/common.gradle
index 2db58e6af3c..dff2b3fc7f9 100644
--- a/sdks/python/container/ml/common.gradle
+++ b/sdks/python/container/ml/common.gradle
@@ -32,7 +32,7 @@ dependencies {
def generatePythonRequirements = tasks.register("generatePythonRequirements") {
dependsOn ':sdks:python:sdist'
- def pipExtraOptions = project.hasProperty("testRCDependencies") ? " --pre" :
""
+ def pipExtraOptions = project.hasProperty("testRCDependencies") ? "--pre" :
""
def runScriptsPath =
"${rootDir}/sdks/python/container/run_generate_requirements.sh"
doLast {
exec {
diff --git a/sdks/python/container/run_generate_requirements.sh
b/sdks/python/container/run_generate_requirements.sh
index ce439281864..15a7aaa71a6 100755
--- a/sdks/python/container/run_generate_requirements.sh
+++ b/sdks/python/container/run_generate_requirements.sh
@@ -80,7 +80,7 @@ pip install --upgrade pip setuptools wheel
# Install dataframe deps to add have Dataframe support in released images.
# Install test deps since some integration tests need dependencies,
# such as pytest, installed in the runner environment.
-pip install ${PIP_EXTRA_OPTIONS:+"$PIP_EXTRA_OPTIONS"} --no-cache-dir
"$SDK_TARBALL""$EXTRAS"
+pip install ${PIP_EXTRA_OPTIONS:+"$PIP_EXTRA_OPTIONS"} --no-cache-dir
"$SDK_TARBALL" "$EXTRAS"
pip install ${PIP_EXTRA_OPTIONS:+"$PIP_EXTRA_OPTIONS"} --no-cache-dir -r
"$PWD"/sdks/python/container/base_image_requirements_manual.txt
pip uninstall -y apache-beam