Added {% include ... %} directive for including examples/travis-ci-minimal.yml in docs/setup.md

This commit is contained in:
Yannick Jadoul
2019-12-08 23:51:09 +01:00
parent 2f41683e85
commit 472fa32d9f
3 changed files with 56 additions and 18 deletions
+22
View File
@@ -0,0 +1,22 @@
language: python
jobs:
include:
# perform a linux build
- services: docker
# and a mac build
- os: osx
language: shell
# and a windows build
- os: windows
language: shell
before_install:
- choco install python --version 3.8.0
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
install:
- python -m pip install cibuildwheel==1.1.0
script:
# build the wheels, put them into './wheelhouse'
- python -m cibuildwheel --output-dir wheelhouse