Commit 87f893b7 by Yung-Yu Chen Committed by Wenzel Jakob

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."
parent 3c796711
...@@ -28,7 +28,7 @@ matrix: ...@@ -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: ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment