* Test PyPy 7.3.3rc1 * Revert "Update Travis CI and CircleCI to use macOS 10.14 " and "Change examples to use macOS >= 10.14" This reverts commits870bf3f740andcd53552b4b. * PyPy 7.3.3rc2 * PyPy 7.3.3 released * Revert to using pypywheels docker images
39 lines
821 B
YAML
39 lines
821 B
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: |
|
|
pip3 install --user cibuildwheel==1.6.4
|
|
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: |
|
|
pip3 install cibuildwheel==1.6.4
|
|
cibuildwheel --output-dir wheelhouse
|
|
- store_artifacts:
|
|
path: wheelhouse/
|
|
|
|
workflows:
|
|
version: 2
|
|
all-tests:
|
|
jobs:
|
|
- linux-wheels
|
|
- osx-wheels
|