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

Fix for #1082 libraries in Linux wheels #1084

Merged
Merged
Changes from 1 commit
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
12 changes: 8 additions & 4 deletions .github/workflows/ubuntu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,18 +197,22 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]
os: [ubuntu-20.04, windows-2019, macos-11]

steps:
- uses: actions/checkout@v2

- name: Build wheels
uses: pypa/cibuildwheel@v2.1.3
uses: pypa/cibuildwheel@v2.8.1
env:
# use the Debian9-based image manylinux_2_24 (https://github.com/pypa/manylinux)
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
# need unixODBC on linux
CIBW_BEFORE_ALL_LINUX: apt-get update && apt-get -y install unixodbc-dev
# disable 32-bit and pypy builds
CIBW_SKIP: "*-win32 *-manylinux_i686 pp*"
# repairing the linux wheels adds old buggy versions of libraries to them, so don't (see issue 1081)
CIBW_REPAIR_WHEEL_COMMAND_LINUX: ""
# for now, disable 32-bit, musllinux, and pypy builds
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_* pp*"

- uses: actions/upload-artifact@v2
with:
Expand Down