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

Get a newer manylinux2010_x86_64 Docker image with auditwheel 4.0.0. #804

Merged
merged 2 commits into from
Jun 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,16 @@ jobs:
submodules: "recursive"

- name: Build wheels
uses: pypa/cibuildwheel@v1.11.1
uses: pypa/cibuildwheel@v1.12.0
env:
# Build for cpython >= 3.6.
CIBW_PROJECT_REQUIRES_PYTHON: "==${{ matrix.pyver }}.*"
CIBW_SKIP: pp*

# Pin to a manylinux image that contains auditwheel >=4.0.0.
# This pinning can be removed once cibuildwheel 2.0.0 is released, since it will use a newer image.
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux2010_x86_64:2021-06-07-00faba2"

# Build only on 64-bit architectures.
CIBW_ARCHS_MACOS: x86_64
CIBW_ARCHS_LINUX: auto64
Expand Down