Temporarily allows osx homebrew Python 3.6 to fail (#572)

* Temporarily allows osx homebrew Python 3.6 to fail.

https://github.com/pybind/pybind11/pull/570#issuecomment-269120613

"Homebrew just got Python 3.6 (brew install python3), but numpy and scipy don't have binary wheels for 3.6 yet so it's trying to compile from source and failing."
This commit is contained in:
Yung-Yu Chen 2016-12-26 18:24:30 +08:00 committed by Wenzel Jakob
parent 3c79671112
commit 87f893b766

View File

@ -28,7 +28,7 @@ matrix:
env: PYTHON=2.7 CPP=14 CLANG env: PYTHON=2.7 CPP=14 CLANG
- os: osx - os: osx
osx_image: xcode7.3 osx_image: xcode7.3
env: PYTHON=3.5 CPP=14 CLANG env: PYTHON=3.6 CPP=14 CLANG
# Test a PyPy 2.7 nightly build # Test a PyPy 2.7 nightly build
- os: linux - os: linux
env: PYPY=1 PYTHON=2.7 CPP=11 GCC=4.8 env: PYPY=1 PYTHON=2.7 CPP=11 GCC=4.8
@ -59,6 +59,7 @@ matrix:
allow_failures: allow_failures:
- env: PYTHON=3.5 CPP=17 GCC=7 - env: PYTHON=3.5 CPP=17 GCC=7
- env: PYTHON=2.7 CPP=14 GCC=6 # Temporary until python >2.7.13-rc1 migrates to debian testing - env: PYTHON=2.7 CPP=14 GCC=6 # Temporary until python >2.7.13-rc1 migrates to debian testing
- env: PYTHON=3.6 CPP=14 CLANG # Temporary until binary wheels of numpy and scipy become available on brew Python 3.6
cache: cache:
directories: directories:
- $HOME/.cache/pip - $HOME/.cache/pip