You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SPARK-54159][INFRA] Fix pip install commands to use proper quotation marks
### What changes were proposed in this pull request?
This PR aims to a few `pip install` command to use proper quotation marks like the following.
```
-RUN python3.13 -m pip install --ignore-installed blinker>=1.6.2 # mlflow needs this
+RUN python3.13 -m pip install --ignore-installed 'blinker>=1.6.2' # mlflow needs this
```
```
-RUN python3.13 -m pip install numpy>=2.1 pyarrow>=18.0.0 six==1.16.0 pandas==2.3.3 scipy coverage matplotlib openpyxl grpcio==1.67.0 grpcio-status==1.67.0 lxml jinja2 && \
+RUN python3.13 -m pip install 'numpy>=2.1' 'pyarrow>=18.0.0' 'six==1.16.0' 'pandas==2.3.3' scipy coverage matplotlib openpyxl 'grpcio==1.67.0' 'grpcio-status==1.67.0' lxml jinja2 && \
```
### Why are the changes needed?
SHELL handles `>=` before `pip install` command receives it.
### Does this PR introduce _any_ user-facing change?
No behavior change because this is only changing infra.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
This patch had conflicts when merged, resolved by
Committer: Dongjoon Hyun <[email protected]>
Closes#52857 from dongjoon-hyun/SPARK-54159.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 37689bf)
Signed-off-by: Dongjoon Hyun <[email protected]>
0 commit comments