Skip to content

Commit 919feb6

Browse files
HyukjinKwonSeongjin Cho
authored andcommitted
[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 apache#28111 from HyukjinKwon/SPARK-31231-revert. Authored-by: HyukjinKwon <[email protected]> Signed-off-by: HyukjinKwon <[email protected]>
1 parent 933611f commit 919feb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dev/run-pip-tests

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

0 commit comments

Comments
 (0)