Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip extra deps on OSX #3898

Merged
merged 1 commit into from May 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Expand Up @@ -72,7 +72,7 @@ matrix:
- os: osx
osx_image: xcode9.4
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.6 OPTIONAL_DEPS=1
env: TRAVIS_PYTHON_VERSION=3.6 OPTIONAL_DEPS=1 EXTRA_DEPS=0
- os: osx
osx_image: xcode9.4
language: objective-c
Expand Down Expand Up @@ -118,7 +118,11 @@ install:
- |
if [[ "${OPTIONAL_DEPS}" == "1" ]]; then
pip install --retries 3 -r ./requirements/optional.txt $WHEELHOUSE
pip install --retries 3 -r ./requirements/extras.txt $WHEELHOUSE
if [[ "${EXTRA_DEPS}" != "0" ]]; then
# Extra deps need compilation, and it may not always be possible to
# compile them easily on all platforms
pip install --retries 3 -r ./requirements/extras.txt $WHEELHOUSE
fi
fi
- tools/travis/install_qt.sh

Expand Down