Skip to content

Commit 844f207

Browse files
committed
[SPARK-31231][BUILD][FOLLOW-UP] Set the upper bound (before 46.1.0) for setuptools in pip package test
This PR is a followup of #27995. Rather then pining setuptools version, it sets upper bound so Python 3.5 with branch-2.4 tests can pass too. To make the CI build stable No, dev-only change. Jenkins will test. Closes #28005 from HyukjinKwon/investigate-pip-packaging-followup. Authored-by: HyukjinKwon <[email protected]> Signed-off-by: HyukjinKwon <[email protected]> (cherry picked from commit 178d472) Signed-off-by: HyukjinKwon <[email protected]>
1 parent 916a25a commit 844f207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/run-pip-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ for python in "${PYTHON_EXECS[@]}"; do
8181
VIRTUALENV_PATH="$VIRTUALENV_BASE"/$python
8282
rm -rf "$VIRTUALENV_PATH"
8383
if [ -n "$USE_CONDA" ]; then
84-
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools
84+
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip "setuptools<46.1.0"
8585
source activate "$VIRTUALENV_PATH"
8686
else
8787
mkdir -p "$VIRTUALENV_PATH"

0 commit comments

Comments
 (0)