Readme tweaks

This commit is contained in:
Joe Rickerby
2018-09-08 17:13:39 +01:00
parent 9f7fdbf456
commit 35832c4309
+5 -7
View File
@@ -36,7 +36,7 @@ Usage
### Minimal setup ### Minimal setup
- Create a `.travis.yml` file in your repo. - To build Linux and Mac wheels on Travis CI, create a `.travis.yml` file in your repo.
``` ```
language: python language: python
@@ -58,7 +58,7 @@ Usage
Then setup a deployment method by following the [Travis CI deployment docs](https://docs.travis-ci.com/user/deployment/), or see [Delivering to PyPI](#delivering-to-pypi) below. Then setup a deployment method by following the [Travis CI deployment docs](https://docs.travis-ci.com/user/deployment/), or see [Delivering to PyPI](#delivering-to-pypi) below.
- Create a `.circleci/config.yml` file in your repo, - To build Linux and Mac wheels on CircleCI, create a `.circleci/config.yml` file in your repo,
``` ```
version: 2 version: 2
@@ -71,13 +71,11 @@ Usage
steps: steps:
- checkout - checkout
- setup_remote_docker - setup_remote_docker
- run: - run:
name: Build the Linux wheels. name: Build the Linux wheels.
command: | command: |
pip install --user cibuildwheel pip install --user cibuildwheel
cibuildwheel --output-dir wheelhouse cibuildwheel --output-dir wheelhouse
- store_artifacts: - store_artifacts:
path: wheelhouse/ path: wheelhouse/
@@ -87,13 +85,11 @@ Usage
xcode: "10.0.0" xcode: "10.0.0"
steps: steps:
- checkout - checkout
- run: - run:
name: Build the OS X wheels. name: Build the OS X wheels.
command: | command: |
pip install --user cibuildwheel pip install --user cibuildwheel
cibuildwheel --output-dir wheelhouse cibuildwheel --output-dir wheelhouse
- store_artifacts: - store_artifacts:
path: wheelhouse/ path: wheelhouse/
@@ -105,9 +101,11 @@ Usage
- osx-wheels - osx-wheels
``` ```
Note: CircleCI doesn't enable free macOS containers for open source by default, but you can ask for access. See [here](https://circleci.com/docs/2.0/oss/#overview) for more information.
CircleCI will store the built wheels for you - you can access them from the project console. CircleCI will store the built wheels for you - you can access them from the project console.
- Create an `appveyor.yml` file in your repo. - To build Windows wheels on Appveyor, create an `appveyor.yml` file in your repo.
``` ```
build_script: build_script: