Skip to content

Commit aa9701b

Browse files
committed
[SPARK-31231][BUILD] Unset setuptools version in pip packaging test
### What changes were proposed in this pull request? This PR unsets `setuptools` version in CI. This was fixed in the 0.46.1.2+ `setuptools` - pypa/setuptools#2046. `setuptools` 0.46.1.0 and 0.46.1.1 still have this problem. ### Why are the changes needed? To test the latest setuptools out to see if users can actually install and use it. ### Does this PR introduce any user-facing change? No. ### How was this patch tested? Jenkins will test. Closes #28111 from HyukjinKwon/SPARK-31231-revert. Authored-by: HyukjinKwon <gurwls223@apache.org> Signed-off-by: HyukjinKwon <gurwls223@apache.org> (cherry picked from commit 9f58f03) Signed-off-by: HyukjinKwon <gurwls223@apache.org>
1 parent 22e0a5a commit aa9701b

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<46.1.0"
84+
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools
8585
source activate "$VIRTUALENV_PATH"
8686
else
8787
mkdir -p "$VIRTUALENV_PATH"

0 commit comments

Comments
 (0)