Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Also build Python 3.10 wheels #292

Merged
merged 8 commits into from Dec 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-aarch64.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
python3 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
python -m pip install cibuildwheel==1.10.0
python -m pip install cibuildwheel==2.2.2

- name: Lint source with flake8
run: |
Expand All @@ -49,8 +49,8 @@ jobs:
source venv/bin/activate
python -m cibuildwheel --output-dir dist
env:
# build python 3.7 and 3.8
CIBW_BUILD: cp37-* cp38-* cp39-*
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-*
CIBW_SKIP: '*-musllinux_*'
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
CIBW_BUILD_VERBOSITY_LINUX: 0
CIBW_BEFORE_BUILD_LINUX: >
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/build-wheels.yml
Expand Up @@ -46,16 +46,15 @@ jobs:
python -m build --sdist --outdir dist .

- name: Build ${{ matrix.os }} wheels and test
uses: joerick/cibuildwheel@v1.10.0
uses: joerick/cibuildwheel@v2.2.2
with:
output-dir: dist
env:
CIBW_BUILD_VERBOSITY_MACOS: 0
CIBW_BUILD_VERBOSITY_LINUX: 0
CIBW_BUILD_VERBOSITY_WINDOWS: 0
# Python 3.7 and 3.8
CIBW_BUILD: cp37-* cp38-* cp39-*
CIBW_SKIP: '*-manylinux_i686 *-win32'
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-*
CIBW_SKIP: '*-manylinux_i686 *-win32 *-musllinux_*'
CIBW_TEST_REQUIRES: pytest
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010
CIBW_ENVIRONMENT_LINUX: "PATH=/project/cmake-3.17.3-Linux-`uname -m`/bin:$PATH"
Expand Down