This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f58f03  [SPARK-31231][BUILD] Unset setuptools version in pip 
packaging test
9f58f03 is described below

commit 9f58f0385758f31179943a681e4353eb9279cb20
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]>
---
 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 928d40e..470f21e 100755
--- a/dev/run-pip-tests
+++ b/dev/run-pip-tests
@@ -76,7 +76,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]

Reply via email to