Skip to content
Open
Show file tree
Hide file tree
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
23 changes: 12 additions & 11 deletions .github/workflows/bld_wheels_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.2.0
env:
CIBW_BUILD: "*-win_amd64"
CIBW_SKIP: "cp38-* *t-*"
CIBW_SKIP: "*t-*"
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "python -c \"import shutil,sys; shutil.copy2(sys.argv[1], sys.argv[2])\" {wheel} {dest_dir}"

- name: Inject ibm_db_dll.pth into wheels
run: python scripts/inject_pth_into_wheel.py wheelhouse
Expand All @@ -44,10 +45,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.2.0
env:
CIBW_BUILD: "*-win32"
CIBW_SKIP: "cp38-* *t-*"
CIBW_SKIP: "*t-*"
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "python -c \"import shutil,sys; shutil.copy2(sys.argv[1], sys.argv[2])\" {wheel} {dest_dir}"

- name: Inject ibm_db_dll.pth into wheels
run: python scripts/inject_pth_into_wheel.py wheelhouse
Expand All @@ -67,15 +69,15 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.2.0
env:
CIBW_ARCHS_LINUX: "x86_64 i686"
# clidriver v12.1 needs glibc >= 2.34 and CPUs supporting the x86_64-v2
# instruction set (see https://github.com/pypa/manylinux/issues/1725),
# so manylinux2014 (glibc 2.17) can no longer be used here.
CIBW_MANYLINUX_I686_IMAGE: manylinux_2_34
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_34
CIBW_SKIP: "cp38-* *t-* *-musllinux_* *-*linux_{aarch64,ppc64le}"
CIBW_SKIP: "*t-* *-musllinux_* *-*linux_{aarch64,ppc64le}"
CIBW_REPAIR_WHEEL_COMMAND_LINUX:
auditwheel repair
--disable-isa-ext-check
Expand Down Expand Up @@ -106,9 +108,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.2.0
env:
CIBW_SKIP: "cp38-* *t-*"
CIBW_SKIP: "*t-*"
MACOSX_DEPLOYMENT_TARGET: 14.0

- uses: actions/upload-artifact@v6
Expand All @@ -126,10 +128,10 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.2.0
env:
CIBW_ARCHS: "x86_64"
CIBW_SKIP: "cp38-* *t-*"
CIBW_SKIP: "*t-*"
MACOSX_DEPLOYMENT_TARGET: 10.15

- uses: actions/upload-artifact@v6
Expand All @@ -156,7 +158,6 @@ jobs:
rm -rf "$TARBALL"
tar -czf "$TARBALL" "$DIRNAME"
rm -rf "$DIRNAME"

- name: Upload sdist
uses: actions/upload-artifact@v6
with:
Expand Down
Loading
Loading