uvloop/.ci/travis-install.sh

24 lines
566 B
Bash
Raw Permalink Normal View History

#!/bin/bash
set -e -x
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
2018-04-25 17:58:07 +00:00
brew update >/dev/null
brew upgrade pyenv
eval "$(pyenv init -)"
if ! (pyenv versions | grep "${PYTHON_VERSION}$"); then
pyenv install ${PYTHON_VERSION}
fi
pyenv global ${PYTHON_VERSION}
pyenv rehash
2019-02-11 21:31:58 +00:00
brew install gnu-sed
brew outdated libtool || brew upgrade libtool
2019-02-11 21:31:58 +00:00
brew outdated autoconf || brew upgrade autoconf
brew outdated automake || brew upgrade automake
fi
2018-04-25 17:58:07 +00:00
pip install --upgrade setuptools pip wheel
pip install -r .ci/requirements.txt