Update minimal config example

pip2 and language: generic is required on mac for travis to work.

Fixes #48
This commit is contained in:
Joe Rickerby
2018-01-07 17:58:21 +00:00
committed by GitHub
parent e5c7bb416d
commit d16d81e207
+6 -1
View File
@@ -36,15 +36,20 @@ Usage
- Create a `.travis.yml` file in your repo. - Create a `.travis.yml` file in your repo.
``` ```
language: python
matrix: matrix:
include: include:
- sudo: required - sudo: required
services: services:
- docker - docker
env: PIP=pip
- os: osx - os: osx
language: generic
env: PIP=pip2
script: script:
- pip install cibuildwheel==0.6.0 - $PIP install cibuildwheel==0.6.0
- cibuildwheel --output-dir wheelhouse - cibuildwheel --output-dir wheelhouse
``` ```