Skip to content

Commit 5f9232b

Browse files
authored
use brew install instead of easy_install in OSX (protocolbuffers#4537)
use brew instead of easy_install in OSX (easy_install keep failing for a month)
1 parent 25625b9 commit 5f9232b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,8 @@ internal_install_python_deps() {
228228
fi
229229
# Install tox (OS X doesn't have pip).
230230
if [ $(uname -s) == "Darwin" ]; then
231-
sudo easy_install tox
231+
brew upgrade python
232+
python3 -m pip install tox
232233
else
233234
sudo pip install tox
234235
fi

0 commit comments

Comments
 (0)