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."
diff --git a/.travis.yml b/.travis.yml
index ccaa6b4..3d02091 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,7 +28,7 @@
     env: PYTHON=2.7 CPP=14 CLANG
   - os: osx
     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
   - os: linux
     env: PYPY=1 PYTHON=2.7 CPP=11 GCC=4.8
@@ -59,6 +59,7 @@
   allow_failures:
     - 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=3.6 CPP=14 CLANG # Temporary until binary wheels of numpy and scipy become available on brew Python 3.6
 cache:
   directories:
   - $HOME/.cache/pip