use brew install instead of easy_install in OSX (#4537)

use brew instead of easy_install in OSX (easy_install keep failing for a month)
pull/4609/head
Jie Luo 7 years ago committed by GitHub
parent 25625b956a
commit 5f9232b5e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      tests.sh

@ -228,7 +228,8 @@ internal_install_python_deps() {
fi
# Install tox (OS X doesn't have pip).
if [ $(uname -s) == "Darwin" ]; then
sudo easy_install tox
brew upgrade python
python3 -m pip install tox
else
sudo pip install tox
fi

Loading…
Cancel
Save