This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-2.4 by this push:
new aa9701b [SPARK-31231][BUILD] Unset setuptools version in pip
packaging test
aa9701b is described below
commit aa9701bd85c8d2b6440a25dbf2ea9a535e891833
Author: HyukjinKwon <[email protected]>
AuthorDate: Sat Apr 4 08:09:15 2020 +0900
[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 <[email protected]>
Signed-off-by: HyukjinKwon <[email protected]>
(cherry picked from commit 9f58f0385758f31179943a681e4353eb9279cb20)
Signed-off-by: HyukjinKwon <[email protected]>
---
dev/run-pip-tests | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/run-pip-tests b/dev/run-pip-tests
index b978e1f..60cf4d8 100755
--- a/dev/run-pip-tests
+++ b/dev/run-pip-tests
@@ -81,7 +81,7 @@ for python in "${PYTHON_EXECS[@]}"; do
VIRTUALENV_PATH="$VIRTUALENV_BASE"/$python
rm -rf "$VIRTUALENV_PATH"
if [ -n "$USE_CONDA" ]; then
- conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip
"setuptools<46.1.0"
+ conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip
setuptools
source activate "$VIRTUALENV_PATH"
else
mkdir -p "$VIRTUALENV_PATH"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]