This is an automated email from the ASF dual-hosted git repository.
yuanzhou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 9b6ea841cd [GLUTEN-9873][VL] Fix install pandas (#9874)
9b6ea841cd is described below
commit 9b6ea841cd1775372000e1ba7924061b97a7a7bd
Author: Mingliang Zhu <[email protected]>
AuthorDate: Thu Jun 5 15:38:19 2025 +0800
[GLUTEN-9873][VL] Fix install pandas (#9874)
Pin pandas to 2.2.3 so it can work with current gcc/g++
---
.github/workflows/velox_backend.yml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/velox_backend.yml
b/.github/workflows/velox_backend.yml
index ab9ec81de7..b97e247e1b 100644
--- a/.github/workflows/velox_backend.yml
+++ b/.github/workflows/velox_backend.yml
@@ -636,7 +636,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.2.2 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and run unit test for Spark 3.2.2 (other tests)
run: |
cd $GITHUB_WORKSPACE/
@@ -725,7 +725,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.3.1 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and Run unit test for Spark 3.3.1 (other tests)
run: |
cd $GITHUB_WORKSPACE/
@@ -824,7 +824,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.4.4 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and Run unit test for Spark 3.4.4 (other tests)
run: |
cd $GITHUB_WORKSPACE/
@@ -926,7 +926,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.5.2 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and Run unit test for Spark 3.5.2 (other tests)
run: |
cd $GITHUB_WORKSPACE/
@@ -982,7 +982,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.5.2 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and Run unit test for Spark 3.5.2 with scala-2.13 (other
tests)
run: |
cd $GITHUB_WORKSPACE/
@@ -1074,7 +1074,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.5.2 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and Run unit test for Spark 3.5.2 (other tests)
run: |
cd $GITHUB_WORKSPACE/
@@ -1164,7 +1164,7 @@ jobs:
alternatives --set python3 /usr/bin/python3.9 && \
pip3 install setuptools==77.0.3 && \
pip3 install pyspark==3.5.2 cython && \
- pip3 install pandas pyarrow
+ pip3 install pandas==2.2.3 pyarrow
- name: Build and Run unit test for Spark 3.5.2 (other tests)
run: |
cd $GITHUB_WORKSPACE/
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]