diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 00000000..301901d8 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,11 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details +version: 2 + +mkdocs: + configuration: mkdocs.yml + +python: + version: 3.7 + install: + - requirements: requirements-dev.txt diff --git a/LICENSE b/LICENSE index 827bf6b4..e9b2ceee 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ This project is licensed under the 'BSD 2-clause license'. -Copyright (c) 2017, Joe Rickerby. All rights reserved. +Copyright (c) 2017-2019, Joe Rickerby and contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index 4915be85..3be0b125 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,14 @@ cibuildwheel [![PyPI](https://img.shields.io/pypi/v/cibuildwheel.svg)](https://pypi.python.org/pypi/cibuildwheel) [![Build Status](https://travis-ci.org/joerick/cibuildwheel.svg?branch=master)](https://travis-ci.org/joerick/cibuildwheel) [![Build status](https://ci.appveyor.com/api/projects/status/wbsgxshp05tt1tif/branch/master?svg=true)](https://ci.appveyor.com/project/joerick/cibuildwheel/branch/master) [![CircleCI](https://circleci.com/gh/joerick/cibuildwheel.svg?style=svg)](https://circleci.com/gh/joerick/cibuildwheel) +[Documentation](https://cibuildwheel.readthedocs.org) + + + Python wheels are great. Building them across **Mac, Linux, Windows**, on **multiple versions of Python**, is not. `cibuildwheel` is here to help. `cibuildwheel` runs on your CI server - currently it supports Azure Pipelines, Travis CI, AppVeyor, and CircleCI - and it builds and tests your wheels across all of your platforms. -**`cibuildwheel` is in beta**. It's brand new - I'd love for you to try it and help make it better! What does it do? ---------------- @@ -38,472 +41,65 @@ Usage | AppVeyor | | | ✅ | | CircleCI | ✅ | ✅ | | -`cibuildwheel` is not intended to run on your development machine. It will try to install packages globally; this is no good. Travis CI, CircleCI, and AppVeyor run their builds in isolated environments, so are ideal for this kind of script. +`cibuildwheel` is not intended to run on your development machine. Because it uses system Python from Python.org it will try to install packages globally - not what you expect from a build tool! Instead, isolated CI services like Travis CI, CircleCI, Azure Pipelines and AppVeyor are ideal. -### Minimal setup + -
- Azure Pipelines - - - - +Example setup +------------- -- Using Azure pipelines, you can build all three platforms on the same service. Create a `azure-pipelines.yml` file in your repo. +To build manylinux and macOS wheels on Travis CI, and upload them to PyPI whenever you tag a version, you could use this `.travis.yml`: -**azure-pipelines.yml** ```yaml -jobs: -- job: linux - pool: {vmImage: 'Ubuntu-16.04'} - steps: - - task: UsePythonVersion@0 - - bash: | - python -m pip install --upgrade pip - pip install cibuildwheel==0.12.0 - cibuildwheel --output-dir wheelhouse . - - task: PublishBuildArtifacts@1 - inputs: {pathtoPublish: 'wheelhouse'} -- job: macos - pool: {vmImage: 'macOS-10.13'} - steps: - - task: UsePythonVersion@0 - - bash: | - python -m pip install --upgrade pip - pip install cibuildwheel==0.12.0 - cibuildwheel --output-dir wheelhouse . - - task: PublishBuildArtifacts@1 - inputs: {pathtoPublish: 'wheelhouse'} -- job: windows - pool: {vmImage: 'vs2017-win2016'} - steps: - - task: UsePythonVersion@0 - - script: choco install vcpython27 -f -y - displayName: Install Visual C++ for Python 2.7 - - bash: | - python -m pip install --upgrade pip - pip install cibuildwheel==0.12.0 - cibuildwheel --output-dir wheelhouse . - - task: PublishBuildArtifacts@1 - inputs: {pathtoPublish: 'wheelhouse'} +language: python + +matrix: + include: + # perform a linux build + - sudo: required + services: + - docker + env: PIP=pip + # and a mac build + - os: osx + language: generic + env: PIP=pip2 + +env: + global: + - TWINE_USERNAME=joerick + # Note: TWINE_PASSWORD is set in Travis settings + +script: + - $PIP install cibuildwheel==0.12.0 + + # build the wheels, put them into './wheelhouse' + - cibuildwheel --output-dir wheelhouse + + # if the release was tagged, upload them to PyPI + - | + if [[ $TRAVIS_TAG ]]; then + python -m pip install twine + python -m twine upload wheelhouse/*.whl + fi ``` -
- -
- Travis CI - - - - - -- To build Linux and Mac wheels on Travis CI, create a `.travis.yml` file in your repo. - - ```yaml - language: python - - matrix: - include: - - sudo: required - services: - - docker - env: PIP=pip - - os: osx - language: generic - env: PIP=pip2 - - script: - - $PIP install cibuildwheel==0.12.0 - - cibuildwheel --output-dir wheelhouse - ``` - - To build on Windows too, add this matrix entry: - ```yaml - - os: windows - language: shell - before_install: - - choco install python3 --version 3.6.8 --no-progress -y - env: - - PATH=/c/Python36:/c/Python36/Scripts:$PATH - ``` - - Note that building Windows Python 2.7 wheels on Travis is unsupported. - - 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. - -
- -
- CircleCI - - - - -- To build Linux and Mac wheels on CircleCI, create a `.circleci/config.yml` file in your repo, - - ``` - version: 2 - - jobs: - linux-wheels: - working_directory: ~/linux-wheels - docker: - - image: circleci/python:3.6 - steps: - - checkout - - setup_remote_docker - - run: - name: Build the Linux wheels. - command: | - pip install --user cibuildwheel - cibuildwheel --output-dir wheelhouse - - store_artifacts: - path: wheelhouse/ - - osx-wheels: - working_directory: ~/osx-wheels - macos: - xcode: "10.0.0" - steps: - - checkout - - run: - name: Build the OS X wheels. - command: | - pip install --user cibuildwheel - cibuildwheel --output-dir wheelhouse - - store_artifacts: - path: wheelhouse/ - - workflows: - version: 2 - all-tests: - jobs: - - linux-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. - -
- - -
- AppVeyor - - - -- To build Windows wheels on AppVeyor, create an `appveyor.yml` file in your repo. - - ``` - build_script: - - pip install cibuildwheel==0.12.0 - - cibuildwheel --output-dir wheelhouse - artifacts: - - path: "wheelhouse\\*.whl" - name: Wheels - ``` - - AppVeyor will store the built wheels for you - you can access them from the project console. Alternatively, you may want to store them in the same place as the Travis CI build. See [AppVeyor deployment docs](https://www.appveyor.com/docs/deployment/) for more info, or see [Delivering to PyPI](#delivering-to-pypi) below. - -
- -All being well, you should get wheels delivered to you in a few minutes. - -> ⚠️ Got an error? Check the [checklist](#it-didnt-work) below. - -### Configuration overview - -`cibuildwheel` allows for easy customization of the various phases of the build process demonstrated above: - -| | Option | | -|---|---|---| -| **Target wheels** | `CIBW_PLATFORM` | Override the auto-detected target platform | -| | `CIBW_BUILD` | Build only certain Python versions | -| | `CIBW_SKIP` | Skip certain Python versions | -| **Build parameters** | `CIBW_BUILD_VERBOSITY` | Increase or decrease the output of `pip wheel` | -| **Build environment** | `CIBW_ENVIRONMENT` | Set environment variables needed during the build | -| | `CIBW_BEFORE_BUILD` | Execute a shell command preparing each wheel's build | -| | `CIBW_MANYLINUX_X86_64_IMAGE` | Specify an alternative manylinux x86_64 docker image | -| | `CIBW_MANYLINUX_I686_IMAGE` | Specify an alternative manylinux i686 docker image | -| **Tests** | `CIBW_TEST_COMMAND` | Execute a shell command to test all built wheels | -| | `CIBW_TEST_REQUIRES` | Install Python dependencies before running the tests | -| | `CIBW_TEST_EXTRAS` | Install Python dependencies before running the tests using ``extras_require``| - -A more detailed description of the options, the allowed values, and some examples can be found in the [Options](#options) section. - -### Linux builds on Docker - -Linux wheels are built in the [`manylinux` docker images](https://github.com/pypa/manylinux) to provide binary compatible wheels on Linux, according to [PEP 571](https://www.python.org/dev/peps/pep-0571/). Because of this, when building with `cibuildwheel` on Linux, a few things should be taken into account: -- Programs and libraries cannot be installed on the Travis CI Ubuntu host with `apt-get`, but can be installed inside of the Docker image using `yum` or manually. The same goes for environment variables that are potentially needed to customize the wheel building. `cibuildwheel` supports this by providing the `CIBW_ENVIRONMENT` and `CIBW_BEFORE_BUILD` options to setup the build environment inside the running Docker image. See [below](#options) for details on these options. -- The project directory is mounted in the running Docker instance as `/project`, the output directory for the wheels as `/output`. In general, this is handled transparently by `cibuildwheel`. For a more finegrained level of control however, the root of the host file system is mounted as `/host`, allowing for example to access shared files, caches, etc. on the host file system. Note that this is not available on CircleCI due to their Docker policies. -- Alternative dockers images can be specified with the `CIBW_MANYLINUX_X86_64_IMAGE` and `CIBW_MANYLINUX_I686_IMAGE` options to allow for a custom, preconfigured build environment for the Linux builds. See [below](#options) for more details. - +For more information, including how to build on Appveyor, Azure, CircleCI, check out the [documentation](https://cibuildwheel.readthedocs.org). Options ------- -``` -usage: cibuildwheel [-h] [--platform {auto,linux,macos,windows}] - [--output-dir OUTPUT_DIR] [--print-build-identifiers] - [project_dir] - -Build wheels for all the platforms. - -positional arguments: - project_dir Path to the project that you want wheels for. - Default: the current directory. - -optional arguments: - -h, --help show this help message and exit - --platform {auto,linux,macos,windows} - Platform to build for. For "linux" you need docker - running, on Mac or Linux. For "macos", you need a Mac - machine, and note that this script is going to - automatically install MacPython on your system, so - don't run on your development machine. For "windows", - you need to run in Windows, and it will build and test - for all versions of Python at C:\PythonXX[-x64]. - --output-dir OUTPUT_DIR - Destination folder for the wheels. - --print-build-identifiers - Print the build identifiers matched by the current - invocation and exit. - -``` - -Most of the config is via environment variables. These go into `.travis.yml`, `appveyor.yml`, and `.circleci/config.yml` nicely. - -*** - -| Environment variable: `CIBW_PLATFORM` | Command line argument: `--platform` -| --- | --- - -Options: `auto` `linux` `macos` `windows` - -Default: `auto` - -`auto` will auto-detect platform using environment variables, such as `TRAVIS_OS_NAME`/`APPVEYOR`/`CIRCLECI`. - -For `linux` you need Docker running, on Mac or Linux. For `macos`, you need a Mac machine, and note that this script is going to automatically install MacPython on your system, so don't run on your development machine. For `windows`, you need to run in Windows, and it will build and test for all versions of Python at `C:\PythonXX[-x64]`. - -*** - -| Environment variables: `CIBW_BUILD` and `CIBW_SKIP` -| --- - -Optional. - -Space-separated list of builds to build and skip. Each build has an identifier like `cp27-manylinux_x86_64` or `cp35-macosx_10_6_intel` - you can list specific ones to build and `cibuildwheel` will only build those, and/or list ones to skip and `cibuildwheel` won't try to build them. - -When both options are specified, both conditions are applied and only builds with a tag that matches `CIBW_BUILD` and does not match `CIBW_SKIP` will be built. - -The format is `python_tag-platform_tag`. The tags are similar but not identical to the ones defined in [PEP 425](https://www.python.org/dev/peps/pep-0425/#details). - -Python tags look like `cp27` `cp35` `cp36` `cp37` `cp38` - -Platform tags look like `macosx_10_6_intel` `macosx_10_9_x86_64` `manylinux_x86_64` `manylinux_i686` `win32` `win_amd64` - -You can also use shell-style globbing syntax (as per `fnmatch`). - -The list of supported and currently selected build identifiers can be retrieved by passing the `--print-build-identifiers` flag to `cibuildwheel`. - -Examples: -- Only build on Python 3.6: `CIBW_BUILD`:`cp36-*` -- Skip building on Python 2.7 on the Mac: `CIBW_SKIP`:`cp27-macosx_10_6_intel` -- Skip building on Python 3.8 on the Mac: `CIBW_SKIP`:`cp38-macosx_10_9_x86_64` -- Skip building on Python 2.7 on all platforms: `CIBW_SKIP`:`cp27-*` -- Skip Python 2.7 on Windows: `CIBW_SKIP`:`cp27-win*` -- Skip Python 2.7 on 32-bit Windows: `CIBW_SKIP`:`cp27-win32` -- Skip Python 2.7 and Python 3.5: `CIBW_SKIP`:`cp27-* cp35-*` -- Skip Python 3.6 on Linux: `CIBW_SKIP`:`cp36-manylinux*` -- Only build on Python 3 and skip 32-bit builds: `CIBW_BUILD`:`cp3?-*` and `CIBW_SKIP`:`*-win32 *-manylinux_i686` - -*** - -| Environment variable: `CIBW_BUILD_VERBOSITY` -| --- - -Optional. - -An number from 1 to 3 to increase the level of verbosity (corresponding to invoking pip with `-v`, `-vv`, and `-vvv`), between -1 and -3 (`-q`, `-qq`, and `-qqq`), or just 0 (default verbosity). These flags are useful while debugging a build when the output of the actual build invoked by `pip wheel` is required. - -Platform-specific variants also available: -`CIBW_BUILD_VERBOSITY_MACOS` | `CIBW_BUILD_VERBOSITY_WINDOWS` | `CIBW_BUILD_VERBOSITY_LINUX` - -*** - -| Environment variable: `CIBW_ENVIRONMENT` -| --- - -Optional. - -A space-separated list of environment variables to set during the build. Bash syntax should be used (even on Windows!). - -You must set this variable to pass variables to Linux builds (since they execute in a Docker container). It also works for the other platforms. - -You can use `$PATH` syntax to insert other variables, or the `$(pwd)` syntax to insert the output of other shell commands. - -Example: `CFLAGS="-g -Wall" CXXFLAGS="-Wall"`\ -Example: `PATH=$PATH:/usr/local/bin`\ -Example: `BUILD_TIME="$(date)"`\ -Example: `PIP_EXTRA_INDEX_URL="https://pypi.myorg.com/simple"`\ - -Platform-specific variants also available: -`CIBW_ENVIRONMENT_MACOS` | `CIBW_ENVIRONMENT_WINDOWS` | `CIBW_ENVIRONMENT_LINUX` - -In addition to the above, `cibuildwheel` always defines the environment variable `CIBUILDWHEEL=1`. This can be useful for [building wheels with optional extensions](https://github.com/joerick/cibuildwheel/wiki/Building-packages-with-optional-C-extensions). - -*** - -| Environment variable: `CIBW_BEFORE_BUILD` -| --- - -Optional. - -A shell command to run before building the wheel. This option allows you to run a command in **each** Python environment before the `pip wheel` command. This is useful if you need to set up some dependency so it's available during the build. - -If dependencies are required to build your wheel (for example if you include a header from a Python module), set this to `pip install .`, and the dependencies will be installed automatically by pip. However, this means your package will be built twice - if your package takes a long time to build, you might wish to manually list the dependencies here instead. - -The active Python binary can be accessed using `python`, and pip with `pip`; `cibuildwheel` makes sure the right version of Python and pip will be executed. `{project}` can be used as a placeholder for the absolute path to the project's root. - -Example: `pip install .`\ -Example: `pip install pybind11`\ -Example: `yum install -y libffi-dev && pip install .` - -Platform-specific variants also available:\ - `CIBW_BEFORE_BUILD_MACOS` | `CIBW_BEFORE_BUILD_WINDOWS` | `CIBW_BEFORE_BUILD_LINUX` - -*** - -| Environment variables: `CIBW_MANYLINUX_X86_64_IMAGE` and `CIBW_MANYLINUX_I686_IMAGE` -| --- - -Optional. - -An alternative Docker image to be used for building [`manylinux`](https://github.com/pypa/manylinux) wheels. `cibuildwheel` will then pull these instead of the default images, [`quay.io/pypa/manylinux2010_x86_64`](https://quay.io/pypa/manylinux2010_x86_64) and [`quay.io/pypa/manylinux2010_i686`](https://quay.io/pypa/manylinux2010_i686). - -The value of this option can either be set to `manylinux1` or `manylinux2010` to use the [official `manylinux` images](https://github.com/pypa/manylinux), or any other valid Docker image name. - -Beware to specify a valid Docker image that can be used in the same way as the official, default Docker images: all necessary Python and pip versions need to be present in `/opt/python/`, and the `auditwheel` tool needs to be present for `cibuildwheel` to work. Apart from that, the architecture and relevant shared system libraries need to be manylinux1- or manylinux2010-compatible in order to produce valid `manylinux1`/`manylinux2010` wheels (see https://github.com/pypa/manylinux, [PEP 513](https://www.python.org/dev/peps/pep-0513/), and [PEP 571](https://www.python.org/dev/peps/pep-0571/) for more details). - -Note that `auditwheel` detects the version of the `manylinux` standard in the Docker image through the `AUDITWHEEL_PLAT` environment variable, as `cibuildwheel` has no way of detecting the correct `--plat` command line argument to pass to `auditwheel` for a custom image. If a Docker image does not correctly set this `AUDITWHEEL_PLAT` environment variable, the `CIBW_ENVIRONMENT` option can be used to do so (e.g., `CIBW_ENVIRONMENT="manylinux2010_$(uname -m)"`). - -Example: `manylinux1`\ -Example: `dockcross/manylinux-x64`\ -Example: `dockcross/manylinux-x86` - -*** - -| Environment variable: `CIBW_TEST_COMMAND` -| --- - -Optional. - -Shell command to run tests after the build. The wheel will be installed automatically and available for import from the tests. `{project}` can be used as a placeholder for the absolute path to the project's root and will be replaced by `cibuildwheel`. - -On Linux and Mac, the command runs in a shell, so you can write things like `cmd1 && cmd2`. - -Example: `nosetests {project}/tests` - -Platform-specific variants also available: -`CIBW_TEST_COMMAND_MACOS` | `CIBW_TEST_COMMAND_WINDOWS` | `CIBW_TEST_COMMAND_LINUX` - -*** - -| Environment variable: `CIBW_TEST_REQUIRES` -| --- - -Optional. - -Space-separated list of dependencies required for running the tests. - -Example: `pytest`\ -Example: `nose==1.3.7 moto==0.4.31` - -Platform-specific variants also available: -`CIBW_TEST_REQUIRES_MACOS` | `CIBW_TEST_REQUIRES_WINDOWS` | `CIBW_TEST_REQUIRES_LINUX` - -*** - -| Environment variable: `CIBW_TEST_EXTRAS` -| --- - -Optional. - -Comma-separated list of -[extras_require](https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies) -options that should be included when installing the wheel prior to running the -tests. This can be used to avoid having to redefine test dependencies in -`CIBW_TEST_REQUIRES` if they are already defined in `setup.py` or -`setup.cfg`. - -Example: `test,qt` (will cause the wheel to be installed with `pip install [test,qt]`) - - -Platform-specific variants also available: -`CIBW_TEST_EXTRAS_MACOS` | `CIBW_TEST_EXTRAS_WINDOWS` | `CIBW_TEST_EXTRAS_LINUX` - -### Example YML syntax - - - - -
example .travis.yml environment variables
env:
-  global:
-    - CIBW_TEST_REQUIRES=nose
-    - CIBW_TEST_COMMAND="nosetests {project}/tests"
-
example appveyor.yml environment variables
environment:
-  global:
-    CIBW_TEST_REQUIRES: nose
-    CIBW_TEST_COMMAND: "nosetests {project}\\tests"
-
- -Delivering to PyPI ------------------- - -After you've built your wheels, you'll probably want to deliver them to PyPI. - -### Manual method - -On your development machine, do the following... - -```bash -# Clear out your 'dist' folder. -rm -rf dist -# Make a source distribution -python setup.py sdist - -# 🏃🏻 -# Go and download your wheel files from wherever you put them. Put -# them all into the 'dist' folder. - -# Upload using 'twine' (you may need to 'pip install twine') -twine upload dist/* -``` - -### Semi-automatic method using wheelhouse-uploader - -Obviously, manual steps are for chumps, so we can automate this a little by using [wheelhouse-uploader](https://github.com/ogrisel/wheelhouse-uploader). - -> Quick note from me - using S3 as a storage didn't work due to a [bug](https://issues.apache.org/jira/browse/LIBCLOUD-792) in libcloud. Feel free to use my fork of that package that fixes the bug `pip install https://github.com/joerick/libcloud/archive/v1.5.0-s3fix.zip` - -### Automatic method - -If you don't need much control over the release of a package, you can set up cibuildwheel to deliver the wheels straight to PyPI. This doesn't require any cloud storage to work - you just need to bump the version and tag it. - -Check out [this example repo](https://github.com/joerick/cibuildwheel-autopypi-example) for instructions on how to set this up. - -It didn't work! ---------------- - -If your wheel didn't compile, check the list below for some debugging tips. - -- A mistake in your config. To quickly test your config without doing a git push and waiting for your code to build on CI, you can run the Linux build in a Docker container. On Mac or Linux, with Docker running, try `cibuildwheel --platform linux`. You'll have to bring your config into the current environment first. -- Missing dependency. You might need to install something on the build machine. You can do this in `.travis.yml`, `appveyor.yml`, or `.circleci/config.yml`, with apt-get, brew or whatever Windows uses :P . Given how the Linux build works, we'll probably have to build something into `cibuildwheel`. Let's chat about that over in the issues! -- Windows: missing C feature. The Windows C compiler doesn't support C language features invented after 1990, so you'll have to backport your C code to C90. For me, this mostly involved putting my variable declarations at the top of the function like an animal. -- MacOS: calling cibuildwheel from a python3 script and getting a `ModuleNotFoundError`? Due to a [bug](https://bugs.python.org/issue22490) in CPython, you'll need to [unset the `__PYVENV_LAUNCHER__` variable](https://github.com/joerick/cibuildwheel/issues/133#issuecomment-478288597) before activating a venv. +| | Option | Description | +|---|--------|-------------| +| **Build selection** | [`CIBW_PLATFORM`](https://cibuildwheel.readthedocs.io/en/stable/options/#platform) | Override the auto-detected target platform | +| | [`CIBW_BUILD`](https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip) [`CIBW_SKIP`](https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip) | Choose the Python versions to build | +| **Build environment** | [`CIBW_ENVIRONMENT`](https://cibuildwheel.readthedocs.io/en/stable/options/#environment) | Set environment variables needed during the build | +| | [`CIBW_BEFORE_BUILD`](https://cibuildwheel.readthedocs.io/en/stable/options/#before-build) | Execute a shell command preparing each wheel's build | +| | [`CIBW_MANYLINUX_X86_64_IMAGE`](https://cibuildwheel.readthedocs.io/en/stable/options/#manylinux-image) [`CIBW_MANYLINUX_I686_IMAGE`](https://cibuildwheel.readthedocs.io/en/stable/options/#manylinux-image) | Specify alternative manylinux docker images | +| **Testing** | [`CIBW_TEST_COMMAND`](https://cibuildwheel.readthedocs.io/en/stable/options/#test-command) | Execute a shell command to test all built wheels | +| | [`CIBW_TEST_REQUIRES`](https://cibuildwheel.readthedocs.io/en/stable/options/#test-requires) | Install Python dependencies before running the tests | +| | [`CIBW_TEST_EXTRAS`](https://cibuildwheel.readthedocs.io/en/stable/options/#test-extras) | Install your wheel for testing using extras_require | +| **Other** | [`CIBW_BUILD_VERBOSITY`](https://cibuildwheel.readthedocs.io/en/stable/options/#test-extras) | Increase/decrease the output of pip wheel | Working examples ---------------- @@ -521,7 +117,7 @@ Here are some repos that use cibuildwheel. - [TgCrypto](https://github.com/pyrogram/tgcrypto) - [Twisted](https://github.com/twisted/twisted) -> Add repo here! Send a PR. +> Add your repo here! Send a PR. Legal note ---------- @@ -710,24 +306,7 @@ _31 March 2017_ Contributing ============ -Wheel-building is pretty complex. I expect users to find many edge-cases - please help the rest of the community out by documenting these, adding features to support them, and reporting bugs. - -I plan to be pretty liberal in accepting pull requests, as long as they align with the design goals below. - -`cibuildwheel` is indie open source. I'm not paid to work on this. - -Design Goals ------------- - -- `cibuildwheel` should wrap the complexity of wheel building. -- The user interface to `cibuildwheel` is the build script (e.g. `.travis.yml`). Feature additions should not increase the complexity of this script. -- Options should be environment variables (these lend themselves better to YML config files). They should be prefixed with `CIBW_`. -- Options should be generalise to all platforms. If platform-specific options are required, they should be namespaced e.g. `CIBW_TEST_COMMAND_MACOS` - -Other notes: - -- The platforms are very similar, until they're not. I'd rather have straight-forward code than totally DRY code, so let's keep airy platfrom abstractions to a minimum. -- I might want to break the options into a shared config file one day, so that config is more easily shared. That has motivated some of the design decisions. +For more info on how to contribute to cibuildwheel, see the [docs](https://cibuildwheel.readthedocs.io/en/latest/contributing/). Maintainers ----------- @@ -753,7 +332,7 @@ Massive props also to- - @mayeut for a [phenomenal PR](https://github.com/joerick/cibuildwheel/pull/71) patching Python itself for better compatibility! See also --------- +======== If you'd like to keep wheel building separate from the package itself, check out [astrofrog/autowheel](https://github.com/astrofrog/autowheel). It builds packages using cibuildwheel from source distributions on PyPI. diff --git a/docs/contributing.md b/docs/contributing.md new file mode 100644 index 00000000..c3988004 --- /dev/null +++ b/docs/contributing.md @@ -0,0 +1,30 @@ +--- +title: Contributing +--- + +Wheel-building can be pretty complex. I expect users to find many edge-cases - please help the rest of the community out by documenting these, adding features to support them, and reporting bugs. + +I plan to be pretty liberal in accepting pull requests, as long as they align with the design goals below. + +`cibuildwheel` is indie open source. We're not paid to work on this. + +Design Goals +------------ + +- `cibuildwheel` should wrap the complexity of wheel building. +- The user interface to `cibuildwheel` is the build script (e.g. `.travis.yml`). Feature additions should not increase the complexity of this script. +- Options should be environment variables (these lend themselves better to YML config files). They should be prefixed with `CIBW_`. +- Options should be generalise to all platforms. If platform-specific options are required, they should be namespaced e.g. `CIBW_TEST_COMMAND_MACOS` + +Other notes: + +- The platforms are very similar, until they're not. I'd rather have straight-forward code than totally DRY code, so let's keep airy platfrom abstractions to a minimum. +- I might want to break the options into a shared config file one day, so that config is more easily shared. That has motivated some of the design decisions. + +### cibuildwheel's relationship with build errors + +cibuildwheel doesn't really do anything itself - it's always deferring to other tools (pip, wheel, auditwheel, delocate, docker). Without cibuildwheel, the process is really fragmented. Different tools, across different OSs need to be stitched together in just the right way to make it work. + +We're not responsible for errors in those tools, for fixing errors/crashes there. But cibuildwheel's job is providing users with an 'integrated' user experience across those tools. We provide an abstraction. The user says 'build me some wheels', not 'open the docker container, build a wheel with pip, fix up the symbols with auditwheel' etc. However, errors have a habit of breaking abstractions. And this is where users get confused, because the mechanism of cibuildwheel is laid bare, and they must understand a little bit how it works to debug. + +So, if we can, I'd like to improve the experience on errors as well. In [this](https://github.com/joerick/cibuildwheel/issues/139) case, it takes a bit of knowledge to understand that the linux builds are happening in a totally different OS via docker, that the linked symbols won't match, that auditwheel will fail because of this. A problem with how the tools fit together, instead of the tools themselves. diff --git a/docs/deliver-to-pypi.md b/docs/deliver-to-pypi.md new file mode 100644 index 00000000..15d2317e --- /dev/null +++ b/docs/deliver-to-pypi.md @@ -0,0 +1,36 @@ +--- +title: Delivering to PyPI +--- + +After you've built your wheels, you'll probably want to deliver them to PyPI. + +### Manual method + +On your development machine, do the following... + +```bash +# Clear out your 'dist' folder. +rm -rf dist +# Make a source distribution +python setup.py sdist + +# 🏃🏻 +# Go and download your wheel files from wherever you put them. e.g. your CI +# provider can be configured to store them for you. Put them all into the +# 'dist' folder. + +# Upload using 'twine' (you may need to 'pip install twine') +twine upload dist/* +``` + +### Semi-automatic method using wheelhouse-uploader + +Obviously, manual steps are for chumps, so we can automate this a little by using [wheelhouse-uploader](https://github.com/ogrisel/wheelhouse-uploader). + +> Quick note from me - using S3 as a storage didn't work due to a [bug](https://issues.apache.org/jira/browse/LIBCLOUD-792) in libcloud. Feel free to use my fork of that package that fixes the bug `pip install https://github.com/joerick/libcloud/archive/v1.5.0-s3fix.zip` + +### Automatic method + +If you don't need much control over the release of a package, you can set up cibuildwheel to deliver the wheels straight to PyPI. This doesn't require anycloud storage to work - you just need to bump the version and tag it. + +Check out [this example repo](https://github.com/joerick/cibuildwheel-autopypi-example) for instructions on how to set this up. diff --git a/docs/extra.css b/docs/extra.css new file mode 100644 index 00000000..4a965b22 --- /dev/null +++ b/docs/extra.css @@ -0,0 +1,88 @@ + +/* Global styles */ + +p { + margin-bottom: 12px; +} + +code { + font-size: 85%; + background-color: rgba(27,31,35,.05); + border-radius: 3px; + padding: .2em .4em; + color: inherit; + border: none; + margin: 0 1px; +} + +code, pre, tt { + font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; +} + +.hljs { + padding: 1em; + background-color: #f6f8fa; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 2em; + border-bottom: 1px solid #e1e4e5; + margin-bottom: 0.8em; + padding-bottom: 0.2em; + +} + +.rst-content blockquote { + margin-bottom: 14px; +} + +.rst-content th { + white-space: normal; +} + +/* + Code block filename style + + Use by putting a quote before a code block e.g. + + > filename.txt + + ``` + code here + ``` + + JS adds the relevant classes to make the following selectors work. +*/ +.rst-content .code-block-filename { + margin: 0; + padding: 2px 1em; + background-color: #eff1f3; + font-size: 85%; + font-weight: bold; + + border-top-left-radius: 3px; + border-top-right-radius: 3px; + + border-bottom: 1px solid #e6e8e9; + color: #444; +} + +.rst-content .code-block-filename * { + font-size: inherit; +} +.rst-content .code-block-filename :last-child { + margin-bottom: 0; +} + +.code-block-filename + pre { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.code-block-filename + pre code { + padding-top: 0.9em; +} + +/* import font awesome 4 for icons */ +@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css); diff --git a/docs/extra.js b/docs/extra.js new file mode 100644 index 00000000..d32c3cc0 --- /dev/null +++ b/docs/extra.js @@ -0,0 +1,5 @@ + +$('.rst-content pre') + .prev('blockquote') + .addClass('code-block-filename'); + diff --git a/docs/faq.md b/docs/faq.md new file mode 100644 index 00000000..dc424980 --- /dev/null +++ b/docs/faq.md @@ -0,0 +1,39 @@ +--- +title: Tips and tricks +--- + +### Troubleshooting + +If your wheel didn't compile, check the list below for some debugging tips. + +- A mistake in your config. To quickly test your config without doing a git push and waiting for your code to build on CI, you can test the Linux build in a Docker container. On Mac or Linux, with Docker running, try `cibuildwheel --platform linux`. You'll have to bring your config into the current environment first. + +- Missing dependency. You might need to install something on the build machine. You can do this in `.travis.yml`, `appveyor.yml`, or `.circleci/config.yml`, with apt-get, brew or choco. Given how the Linux build works, you'll need to use the [`CIBW_BEFORE_BUILD`](options.md#before-build) option. + +- Windows: missing C feature. The Windows C compiler doesn't support C language features invented after 1990, so you'll have to backport your C code to C90. For me, this mostly involved putting my variable declarations at the top of the function like an animal. + +- MacOS: calling cibuildwheel from a python3 script and getting a `ModuleNotFoundError`? Due to a [bug](https://bugs.python.org/issue22490) in CPython, you'll need to [unset the `__PYVENV_LAUNCHER__` variable](https://github.com/joerick/cibuildwheel/issues/133#issuecomment-478288597) before activating a venv. + +### Linux builds on Docker + +Linux wheels are built in the [`manylinux` docker images](https://github.com/pypa/manylinux) to provide binary compatible wheels on Linux, according to [PEP 571](https://www.python.org/dev/peps/pep-0571/). Because of this, when building with `cibuildwheel` on Linux, a few things should be taken into account: + +- Programs and libraries cannot be installed on the Travis CI Ubuntu host with `apt-get`, but can be installed inside of the Docker image using `yum` or manually. The same goes for environment variables that are potentially needed to customize the wheel building. `cibuildwheel` supports this by providing the `CIBW_ENVIRONMENT` and `CIBW_BEFORE_BUILD` options to setup the build environment inside the running Docker image. See [the options docs](options.md#build-environment) for details on these options. + +- The project directory is mounted in the running Docker instance as `/project`, the output directory for the wheels as `/output`. In general, this is handled transparently by `cibuildwheel`. For a more finegrained level of control however, the root of the host file system is mounted as `/host`, allowing for example to access shared files, caches, etc. on the host file system. Note that this is not available on CircleCI due to their Docker policies. + +- Alternative dockers images can be specified with the `CIBW_MANYLINUX_X86_64_IMAGE` and `CIBW_MANYLINUX_I686_IMAGE` options to allow for a custom, preconfigured build environment for the Linux builds. See [options](options.md#manylinux-image) for more details. + +### Building packages with optional C extensions + +`cibuildwheel` defines the environment variable `CIBUILDWHEEL` to the value `1` allowing projects for which the C extension is optional to make it mandatory when building wheels. + +An easy way to do it in Python 3 is through the `optional` named argument of `Extension` constructor in your `setup.py`: + +```python +myextension = Extension( + "myextension", + ["myextension.c"], + optional=os.environ.get('CIBUILDWHEEL', '0') != '1', +) +``` diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 00000000..cfadd421 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,11 @@ +--- +title: Home +--- + +{% + includemarkdown "../README.md" + start="" + end="" +%} + +To get started, head over to the [setup guide](setup.md). diff --git a/docs/mkdocs_include_markdown_plugin/mkdocs_include_markdown_plugin/__init__.py b/docs/mkdocs_include_markdown_plugin/mkdocs_include_markdown_plugin/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/docs/mkdocs_include_markdown_plugin/mkdocs_include_markdown_plugin/plugin.py b/docs/mkdocs_include_markdown_plugin/mkdocs_include_markdown_plugin/plugin.py new file mode 100644 index 00000000..69409318 --- /dev/null +++ b/docs/mkdocs_include_markdown_plugin/mkdocs_include_markdown_plugin/plugin.py @@ -0,0 +1,51 @@ +import mkdocs, re, os, io, cgi + +TAG_REGEX_PATTERN = re.compile( + r''' + {% # opening tag + \s* + includemarkdown # directive name + \s+ + "(?P[^"]+)" # "filename" + (?:\s+start="(?P[^"]+)")? # optional start expression + (?:\s+end="(?P[^"]+)")? # optional end expression + \s* + %} # closing tag + ''', + flags=re.VERBOSE, +) + +class ImportMarkdownPlugin(mkdocs.plugins.BasePlugin): + def on_page_markdown(self, markdown, page, **kwargs): + page_src_path = page.file.abs_src_path + + def found_import_markdown_tag(match): + filename = match.group('filename') + start = match.group('start') + end = match.group('end') + + file_path_abs = os.path.join(os.path.dirname(page_src_path), filename) + + if not os.path.exists(file_path_abs): + raise ValueError('file not found', filename) + + with io.open(file_path_abs, encoding='utf8') as f: + text_to_include = f.read() + + if start: + _, _, text_to_include = text_to_include.partition(start) + + if end: + text_to_include, _, _ = text_to_include.partition(end) + + return ( + '' % ( + filename, cgi.escape(start), cgi.escape(end) + ) + + text_to_include + + '' + ) + + markdown = re.sub(TAG_REGEX_PATTERN, found_import_markdown_tag, markdown) + return markdown + \ No newline at end of file diff --git a/docs/mkdocs_include_markdown_plugin/setup.py b/docs/mkdocs_include_markdown_plugin/setup.py new file mode 100644 index 00000000..0f8b6a18 --- /dev/null +++ b/docs/mkdocs_include_markdown_plugin/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup + +setup( + name='mkdocs_include_markdown_plugin', + version='1.0', + author='Joe Rickerby', + license='Apache 2', + packages=['mkdocs_include_markdown_plugin'], + entry_points={ + 'mkdocs.plugins': [ + 'importmarkdown = mkdocs_include_markdown_plugin.plugin:ImportMarkdownPlugin', + ] + }, + zip_safe=False +) diff --git a/docs/options.md b/docs/options.md new file mode 100644 index 00000000..edbc9939 --- /dev/null +++ b/docs/options.md @@ -0,0 +1,451 @@ +## Options summary + +
+ +## Setting options + +cibuildwheel is configured using environment variables, that can be set using +your CI config. + +For example, to configure cibuildwheel to run tests, add the following YAML to +your CI config file: + +> .travis.yml ([docs](https://docs.travis-ci.com/user/environment-variables/)) +```yaml +env: + global: + - CIBW_TEST_REQUIRES=nose + - CIBW_TEST_COMMAND="nosetests {project}/tests" +``` + +> appveyor.yml ([docs](https://www.appveyor.com/docs/build-configuration/#environment-variables)) +```yaml +environment: + global: + CIBW_TEST_REQUIRES: nose + CIBW_TEST_COMMAND: "nosetests {project}\\tests" +``` + +> .circleci/config.yml ([docs](https://circleci.com/docs/2.0/configuration-reference/#environment)) +```yaml +jobs: + job_name: + environment: + CIBW_TEST_REQUIRES: nose + CIBW_TEST_COMMAND: "nosetests {project}/tests" +``` + +> azure-pipelines.yml ([docs](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables)) +```yaml +variables: + CIBW_TEST_REQUIRES: nose + CIBW_TEST_COMMAND: "nosetests {project}/tests" +``` + + +## Build selection + + +### `CIBW_PLATFORM` {: #platform} + +> Override the auto-detected target platform + +Options: `auto` `linux` `macos` `windows` + +Default: `auto` + +`auto` will auto-detect platform using environment variables, such as `TRAVIS_OS_NAME`/`APPVEYOR`/`CIRCLECI`. + +For `linux` you need Docker running, on Mac or Linux. For `macos`, you need a Mac machine, and note that this script is going to automatically install MacPython on your system, so don't run on your development machine. For `windows`, you need to run in Windows, and it will build and test for all versions of Python at `C:\PythonXX[-x64]`. + +This option can also be set using the command-line option `--platform`. + +### `CIBW_BUILD`, `CIBW_SKIP` {: #build-skip} + +> Choose the Python versions to build + +Space-separated list of builds to build and skip. Each build has an identifier like `cp27-manylinux_x86_64` or `cp35-macosx_10_6_intel` - you can list specific ones to build and `cibuildwheel` will only build those, and/or list ones to skip and `cibuildwheel` won't try to build them. + +When both options are specified, both conditions are applied and only builds with a tag that matches `CIBW_BUILD` and does not match `CIBW_SKIP` will be built. + +When setting the options, you can use shell-style globbing syntax (as per `fnmatch`). All the build identifiers supported by cibuildwheel are shown below: + +
+ +| | macOS 64bit | macOS 32/64bit | Manylinux 64bit | Manylinux 32bit | Windows 64bit | Windows 32bit | +|------------|-------------------------|------------------------|------------------------|----------------------|-----------------|----------------| +| Python 2.7 | | cp27-macosx_10_6_intel | cp27-manylinux_x86_64 | cp27-manylinux_i686 | cp27-win_amd64 | cp27-win32 | +| Python 3.5 | | cp35-macosx_10_6_intel | cp35-manylinux_x86_64 | cp35-manylinux_i686 | cp35-win_amd64 | cp35-win32 | +| Python 3.6 | | cp36-macosx_10_6_intel | cp36-manylinux_x86_64 | cp36-manylinux_i686 | cp36-win_amd64 | cp36-win32 | +| Python 3.7 | | cp37-macosx_10_6_intel | cp37-manylinux_x86_64 | cp37-manylinux_i686 | cp37-win_amd64 | cp37-win32 | +| Python 3.8 | cp38-macosx_10_9_x86_64 | | cp38-manylinux_x86_64 | cp38-manylinux_i686 | cp38-win_amd64 | cp38-win32 | + +The list of supported and currently selected build identifiers can also be retrieved by passing the `--print-build-identifiers` flag to `cibuildwheel`. +The format is `python_tag-platform_tag`, with tags similar to those in [PEP 425](https://www.python.org/dev/peps/pep-0425/#details). + +#### Examples + +```yaml +# Only build on Python 3.6 +CIBW_BUILD: cp36-* + +# Skip building on Python 2.7 on the Mac +CIBW_SKIP: cp27-macosx_10_6_intel + +# Skip building on Python 3.8 on the Mac +CIBW_SKIP: cp38-macosx_10_9_x86_64 + +# Skip building on Python 2.7 on all platforms +CIBW_SKIP: cp27-* + +# Skip Python 2.7 on Windows +CIBW_SKIP: cp27-win* + +# Skip Python 2.7 on 32-bit Windows +CIBW_SKIP: cp27-win32 + +# Skip Python 2.7 and Python 3.5 +CIBW_SKIP: cp27-* cp35-* + +# Skip Python 3.6 on Linux +CIBW_SKIP: cp36-manylinux* + +# Only build on Python 3 and skip 32-bit builds +CIBW_BUILD: cp3?-* +CIBW_SKIP: "*-win32 *-manylinux_i686" +``` + + + + +## Build customization + + +### `CIBW_ENVIRONMENT` {: #environment} +> Set environment variables needed during the build + +A space-separated list of environment variables to set during the build. Bash syntax should be used, even on Windows. + +You must set this variable to pass variables to Linux builds (since they execute in a Docker container). It also works for the other platforms. + +You can use `$PATH` syntax to insert other variables, or the `$(pwd)` syntax to insert the output of other shell commands. + +#### Examples +```yaml +# Set some compiler flags +CIBW_ENVIRONMENT: "CFLAGS='-g -Wall' CXXFLAGS='-Wall'" + +# Append a directory to the PATH variable (this is expanded in the build environment) +CIBW_ENVIRONMENT: "PATH=$PATH:/usr/local/bin" + +# Set BUILD_TIME to the output of the `date` command +CIBW_ENVIRONMENT: "BUILD_TIME=$(date)" + +# Supply options to `pip` to affect how it downloads dependencies +CIBW_ENVIRONMENT: "PIP_EXTRA_INDEX_URL=https://pypi.myorg.com/simple" +``` + +Platform-specific variants also available: +`CIBW_ENVIRONMENT_MACOS` | `CIBW_ENVIRONMENT_WINDOWS` | `CIBW_ENVIRONMENT_LINUX` + +!!! note + `cibuildwheel` always defines the environment variable `CIBUILDWHEEL=1`. This can be useful for [building wheels with optional extensions](faq.md#building-packages-with-optional-c-extensions). + + +### `CIBW_BEFORE_BUILD` {: #before-build} +> Execute a shell command preparing each wheel's build + +A shell command to run before building the wheel. This option allows you to run a command in **each** Python environment before the `pip wheel` command. This is useful if you need to set up some dependency so it's available during the build. + +If dependencies are required to build your wheel (for example if you include a header from a Python module), set this to `pip install .`, and the dependencies will be installed automatically by pip. However, this means your package will be built twice - if your package takes a long time to build, you might wish to manually list the dependencies here instead. + +The active Python binary can be accessed using `python`, and pip with `pip`; `cibuildwheel` makes sure the right version of Python and pip will be executed. `{project}` can be used as a placeholder for the absolute path to the project's root. + +#### Examples +```yaml +# install your project and dependencies before building +CIBW_BEFORE_BUILD: pip install . + +# install something required for the build +CIBW_BEFORE_BUILD: pip install pybind11 + +# chain commands using && +CIBW_BEFORE_BUILD: yum install -y libffi-dev && pip install . +``` + +Platform-specific variants also available: + `CIBW_BEFORE_BUILD_MACOS` | `CIBW_BEFORE_BUILD_WINDOWS` | `CIBW_BEFORE_BUILD_LINUX` + + +### `CIBW_MANYLINUX_X86_64_IMAGE`, `CIBW_MANYLINUX_I686_IMAGE` {: #manylinux-image} +> Specify alternative manylinux docker images + +An alternative Docker image to be used for building [`manylinux`](https://github.com/pypa/manylinux) wheels. `cibuildwheel` will then pull these instead of the default images, [`quay.io/pypa/manylinux2010_x86_64`](https://quay.io/pypa/manylinux2010_x86_64) and [`quay.io/pypa/manylinux2010_i686`](https://quay.io/pypa/manylinux2010_i686). + +The value of this option can either be set to `manylinux1` or `manylinux2010` to use the [official `manylinux` images](https://github.com/pypa/manylinux), or any other valid Docker image name. + +Beware to specify a valid Docker image that can be used in the same way as the official, default Docker images: all necessary Python and pip versions need to be present in `/opt/python/`, and the `auditwheel` tool needs to be present for `cibuildwheel` to work. Apart from that, the architecture and relevant shared system libraries need to be manylinux1- or manylinux2010-compatible in order to produce valid `manylinux1`/`manylinux2010` wheels (see https://github.com/pypa/manylinux, [PEP 513](https://www.python.org/dev/peps/pep-0513/), and [PEP 571](https://www.python.org/dev/peps/pep-0571/) for more details). + +Note that `auditwheel` detects the version of the `manylinux` standard in the Docker image through the `AUDITWHEEL_PLAT` environment variable, as `cibuildwheel` has no way of detecting the correct `--plat` command line argument to pass to `auditwheel` for a custom image. If a Docker image does not correctly set this `AUDITWHEEL_PLAT` environment variable, the `CIBW_ENVIRONMENT` option can be used to do so (e.g., `CIBW_ENVIRONMENT="manylinux2010_$(uname -m)"`). + +#### Examples + +```yaml +# build using the manylinux1 image to ensure manylinux1 wheels are produced +CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 +CIBW_MANYLINUX_I686_IMAGE: manylinux1 + +# build using a different image from the docker registry +CIBW_MANYLINUX_X86_64_IMAGE: dockcross/manylinux-x64 +CIBW_MANYLINUX_I686_IMAGE: dockcross/manylinux-x86 +``` + +## Testing + +### `CIBW_TEST_COMMAND` {: #test-command} +> Execute a shell command to test all built wheels + +Shell command to run tests after the build. The wheel will be installed automatically and available for import from the tests. `{project}` can be used as a placeholder for the absolute path to the project's root and will be replaced by `cibuildwheel`. + +On Linux and Mac, the command runs in a shell, so you can write things like `cmd1 && cmd2`. + +#### Examples + +```yaml +# run the project tests against the installed wheel using `nose` +CIBW_TEST_COMMAND: nosetests {project}/tests + +# run the project tests using `pytest` +CIBW_TEST_COMMAND: nosetests {project}/tests +``` + +Platform-specific variants also available: +`CIBW_TEST_COMMAND_MACOS` | `CIBW_TEST_COMMAND_WINDOWS` | `CIBW_TEST_COMMAND_LINUX` + + +### `CIBW_TEST_REQUIRES` {: #test-requires} +> Install Python dependencies before running the tests + +Space-separated list of dependencies required for running the tests. + +#### Examples + +```yaml +# install pytest before running CIBW_TEST_COMMAND +CIBW_TEST_REQUIRES: pytest + +# install specific versions of test dependencies +CIBW_TEST_REQUIRES: nose==1.3.7 moto==0.4.31 +``` + +Platform-specific variants also available: +`CIBW_TEST_REQUIRES_MACOS` | `CIBW_TEST_REQUIRES_WINDOWS` | `CIBW_TEST_REQUIRES_LINUX` + +### `CIBW_TEST_EXTRAS` {: #test-extras} +> Install your wheel for testing using `extras_require` + +Comma-separated list of +[extras_require](https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies) +options that should be included when installing the wheel prior to running the +tests. This can be used to avoid having to redefine test dependencies in +`CIBW_TEST_REQUIRES` if they are already defined in `setup.py` or +`setup.cfg`. + +#### Examples + +```yaml +# will cause the wheel to be installed with `pip install [test,qt]` +CIBW_TEST_EXTRAS: test,qt +``` + +Platform-specific variants also available: +`CIBW_TEST_EXTRAS_MACOS` | `CIBW_TEST_EXTRAS_WINDOWS` | `CIBW_TEST_EXTRAS_LINUX` + +## Other + +### `CIBW_BUILD_VERBOSITY` {: #build-verbosity} +> Increase/decrease the output of pip wheel + +An number from 1 to 3 to increase the level of verbosity (corresponding to invoking pip with `-v`, `-vv`, and `-vvv`), between -1 and -3 (`-q`, `-qq`, and `-qqq`), or just 0 (default verbosity). These flags are useful while debugging a build when the output of the actual build invoked by `pip wheel` is required. + +#### Examples + +```yaml +# increase pip debugging output +CIBW_BUILD_VERBOSITY: 1 +``` + +Platform-specific variants also available: +`CIBW_BUILD_VERBOSITY_MACOS` | `CIBW_BUILD_VERBOSITY_WINDOWS` | `CIBW_BUILD_VERBOSITY_LINUX` + +## Command line options + +```text +usage: cibuildwheel [-h] [--platform {auto,linux,macos,windows}] + [--output-dir OUTPUT_DIR] [--print-build-identifiers] + [project_dir] + +Build wheels for all the platforms. + +positional arguments: + project_dir Path to the project that you want wheels for. + Default: the current directory. + +optional arguments: + -h, --help show this help message and exit + --platform {auto,linux,macos,windows} + Platform to build for. For "linux" you need docker + running, on Mac or Linux. For "macos", you need a Mac + machine, and note that this script is going to + automatically install MacPython on your system, so + don't run on your development machine. For "windows", + you need to run in Windows, and it will build and test + for all versions of Python at C:\PythonXX[-x64]. + --output-dir OUTPUT_DIR + Destination folder for the wheels. + --print-build-identifiers + Print the build identifiers matched by the current + invocation and exit. + +``` + + + + diff --git a/docs/setup.md b/docs/setup.md new file mode 100644 index 00000000..d89c0db0 --- /dev/null +++ b/docs/setup.md @@ -0,0 +1,194 @@ +--- +title: 'Setup' +--- + +# Azure Pipelines [linux/mac/windows] {: #azure-pipelines} + +Using Azure pipelines, you can build all three platforms on the same service. Create a `azure-pipelines.yml` file in your repo. + +> azure-pipelines.yml +```yaml +jobs: +- job: linux + pool: {vmImage: 'Ubuntu-16.04'} + steps: + - task: UsePythonVersion@0 + - bash: | + python -m pip install --upgrade pip + pip install cibuildwheel==0.12.0 + cibuildwheel --output-dir wheelhouse . + - task: PublishBuildArtifacts@1 + inputs: {pathtoPublish: 'wheelhouse'} +- job: macos + pool: {vmImage: 'macOS-10.13'} + steps: + - task: UsePythonVersion@0 + - bash: | + python -m pip install --upgrade pip + pip install cibuildwheel==0.12.0 + cibuildwheel --output-dir wheelhouse . + - task: PublishBuildArtifacts@1 + inputs: {pathtoPublish: 'wheelhouse'} +- job: windows + pool: {vmImage: 'vs2017-win2016'} + steps: + - task: UsePythonVersion@0 + - script: choco install vcpython27 -f -y + displayName: Install Visual C++ for Python 2.7 + - bash: | + python -m pip install --upgrade pip + pip install cibuildwheel==0.12.0 + cibuildwheel --output-dir wheelhouse . + - task: PublishBuildArtifacts@1 + inputs: {pathtoPublish: 'wheelhouse'} +``` + +Commit this file, enable building of your repo on Azure Pipelines, and push. + +Wheels will be stored for you and available through the Pipelines interface. For more info on this file, check out the [docs](https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema). + +# Travis CI [linux/mac] {: #travis-ci} + +To build Linux and Mac wheels on Travis CI, create a `.travis.yml` file in your repo. + +> .travis.yml +```yaml +language: python + +matrix: + include: + - sudo: required + services: + - docker + env: PIP=pip + - os: osx + language: generic + env: PIP=pip2 + +script: + - $PIP install cibuildwheel==0.12.0 + - cibuildwheel --output-dir wheelhouse +``` + +To build on Windows too, add this matrix entry: +```yaml + - os: windows + language: shell + before_install: + - choco install python3 --version 3.6.8 --no-progress -y + env: + - PATH=/c/Python36:/c/Python36/Scripts:$PATH +``` + +Note that building Windows Python 2.7 wheels on Travis is unsupported. + +Commit this file, enable building of your repo on Travis CI, and push. + +Then setup a deployment method by following the [Travis CI deployment docs](https://docs.travis-ci.com/user/deployment/), or see [Delivering to PyPI](deliver-to-pypi.md). For more info on `.travis.yml`, check out the [docs](https://docs.travis-ci.com/). + +# CircleCI [linux/mac] {: #circleci} + +To build Linux and Mac wheels on CircleCI, create a `.circleci/config.yml` file in your repo, + +> .circleci/config.yml +```yaml +version: 2 + +jobs: + linux-wheels: + working_directory: ~/linux-wheels + docker: + - image: circleci/python:3.6 + steps: + - checkout + - setup_remote_docker + - run: + name: Build the Linux wheels. + command: | + pip install --user cibuildwheel==0.12.0 + cibuildwheel --output-dir wheelhouse + - store_artifacts: + path: wheelhouse/ + + osx-wheels: + working_directory: ~/osx-wheels + macos: + xcode: "10.0.0" + steps: + - checkout + - run: + name: Build the OS X wheels. + command: | + pip install --user cibuildwheel==0.12.0 + cibuildwheel --output-dir wheelhouse + - store_artifacts: + path: wheelhouse/ + +workflows: + version: 2 + all-tests: + jobs: + - linux-wheels + - osx-wheels +``` + +Commit this file, enable building of your repo on CircleCI, and push. + +!!! 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. Check out the CircleCI [docs](https://circleci.com/docs/2.0/configuration-reference/#section=configuration) for more info on this config file. + +# AppVeyor [windows] {: #appveyor} + +To build Windows wheels on AppVeyor, create an `appveyor.yml` file in your repo. + +> appveyor.yml + +```yaml +build_script: + - pip install cibuildwheel==0.12.0 + - cibuildwheel --output-dir wheelhouse +artifacts: + - path: "wheelhouse\\*.whl" + name: Wheels +``` + +Commit this file, enable building of your repo on AppVeyor, and push. + +AppVeyor will store the built wheels for you - you can access them from the project console. Alternatively, you may want to store them in the same place as the Travis CI build. See [AppVeyor deployment docs](https://www.appveyor.com/docs/deployment/) for more info, or see [Delivering to PyPI](deliver-to-pypi.md) below. + +For more info on this config file, check out the [docs](https://www.appveyor.com/docs/). + +> ⚠️ Got an error? Check the [FAQ](faq.md). + + \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 00000000..43e5be2d --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,32 @@ +site_name: cibuildwheel +docs_dir: docs +theme: + name: readthedocs + highlightjs: true + hljs_languages: + - yaml +repo_url: https://github.com/joerick/cibuildwheel + +extra_css: + - extra.css + +extra_javascript: + - extra.js + +nav: + - Home: index.md + - setup.md + - options.md + - deliver-to-pypi.md + - faq.md + - contributing.md + +markdown_extensions: + - fenced_code + - toc: + permalink: True + - attr_list + - admonition + +plugins: + - importmarkdown diff --git a/requirements-dev.txt b/requirements-dev.txt index ae60ed5f..1ecc8596 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,4 @@ -e . +-e ./docs/mkdocs_include_markdown_plugin pytest +mkdocs==1.0.4 diff --git a/setup.cfg b/setup.cfg index ea616ddf..957a2e96 100644 --- a/setup.cfg +++ b/setup.cfg @@ -12,6 +12,10 @@ message = Bump version search = cibuildwheel=={current_version} replace = cibuildwheel=={new_version} +[bumpversion:file:docs/setup.md] +search = cibuildwheel=={current_version} +replace = cibuildwheel=={new_version} + [bdist_wheel] universal = 1