diff options
author | Jie Luo <anandolee@gmail.com> | 2018-05-09 15:35:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 15:35:03 -0700 |
commit | 5f9232b5e0f1e53ccc5deef4be10e17064852d56 (patch) | |
tree | 3ce3d7d5526837840e5a2a2aba7d6a60173ed6c9 | |
parent | 25625b956a2f0d432582009c16553a9fd21c3cea (diff) |
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)
-rwxr-xr-x | tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |