From d16d81e20752d9eb3713e690a9689ff7d8d75ed2 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 7 Jan 2018 17:58:21 +0000 Subject: [PATCH] Update minimal config example pip2 and language: generic is required on mac for travis to work. Fixes #48 --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b985013..e24a4d9b 100644 --- a/README.md +++ b/README.md @@ -36,15 +36,20 @@ Usage - Create a `.travis.yml` file in your repo. ``` + language: python + matrix: include: - sudo: required services: - docker + env: PIP=pip - os: osx + language: generic + env: PIP=pip2 script: - - pip install cibuildwheel==0.6.0 + - $PIP install cibuildwheel==0.6.0 - cibuildwheel --output-dir wheelhouse ```